結果
問題 | No.276 連続する整数の和(1) |
ユーザー | Rp7rf |
提出日時 | 2015-09-04 23:01:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 695 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 61,892 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-07-19 01:34:35 |
合計ジャッジ時間 | 3,924 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 375 ms
6,940 KB |
testcase_04 | AC | 368 ms
6,944 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include<iostream> #include<cmath> #include<algorithm> using namespace std; int main(void){ int n; cin>>n; unsigned long long sum[10]={0}; bool ans = true; for(int i = 1 ; i <= n ; i ++){ sum[0] += i; sum[1] += 1 + i; sum[2] += 2 + i; sum[3] += 3 + i; sum[4] += 4 + i; sum[5] += 5 + i; sum[6] += 6 + i; sum[7] += 7 + i; sum[8] += 8 + i; sum[9] += 9 + i; // for(int j = 0 ; j < 10 ; j ++)cout<<sum[j]<<" " ; //cout<<endl; } unsigned long long gcd = __gcd(sum[0],sum[1]); for(int i = 2 ;i < 10 ; i ++){ unsigned long long num = sum[i]; //cout<<sum[i]<<endl; gcd = __gcd(gcd,num); } cout<<gcd<<endl; }