zoukankan      html  css  js  c++  java
  • Feynman(数学)

    Feynman
    Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu

    Description

    Download as PDF

    Richard Phillips Feynman was a well known American physicist and a recipient of the Nobel Prize in Physics. He worked in theoretical physics and also pioneered the field of quantum computing. He visited South America for ten months, giving lectures and enjoying life in the tropics. He is also known for his books "Surely You're Joking, Mr. Feynman!" and "What Do You Care What Other People Think?", which include some of his adventures below the equator.

    His life-long addiction was solving and making puzzles, locks, and cyphers. Recently, an old farmer in South America, who was a host to the young physicist in 1949, found some papers and notes that is believed to have belonged to Feynman. Among notes about mesons and electromagnetism, there was a napkin where he wrote a simple puzzle: "how many different squares are there in a grid of N ×N squares?".

    In the same napkin there was a drawing which is reproduced below, showing that, for N=2, the answer is 5.

    Input

    The input contains several test cases. Each test case is composed of a single line, containing only one integer N, representing the number of squares in each side of the grid (1 ≤ N ≤ 100).

    The end of input is indicated by a line containing only one zero.

    Output

    For each test case in the input, your program must print a single line, containing the number of different squares for the corresponding input.

    Sample input
    2
    1
    8
    0
    
    Output for the sample input
    5
    1
    204
    

    ACM ICPC :: South American Regional 2008

    S(N) = 1*1 + 2*2 + ...+ N*N = N*(N+1)*(2*N+1)/6

    AC CODE

    #include <iostream>
    #include <cstdio>
    using namespace std;
    
    int main()
    {
        int n;
        while(cin >> n && n)
        {
            cout << n*(n+1)*(2*n+1)/6 <<endl;
        }
        return 0;
    }


  • 相关阅读:
    windows启动、停止和重新启动Apache服务
    Mysql用户密码设置修改和权限分配
    MySQL数据库恢复(使用mysqlbinlog命令)
    影响MySQL性能的五大配置参数
    PHP获取文件后缀名的三种方法
    php 设计模式
    蓦然回首,那人却在灯火阑珊处
    websocket消息推送实现
    Spring任务调度之Quartz
    使用easyui的form提交表单,在IE下出现类似附件下载时提示是否保存的现象
  • 原文地址:https://www.cnblogs.com/cszlg/p/2910563.html
Copyright © 2011-2022 走看看