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