結果
問題 | No.276 連続する整数の和(1) |
ユーザー | hogeover30 |
提出日時 | 2015-10-02 16:27:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 423 ms |
コンパイル使用メモリ | 55,112 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-07-19 19:07:31 |
合計ジャッジ時間 | 4,876 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> using namespace std; int main() { long long n; cin>>n; auto a=n*(n+1)/2; auto b=(n+1)*(n+2)/2; auto res=1LL; for(auto i=2LL;i*i<=a;++i) if (a%i==0 and b%i==0) res=i; cout<<res<<endl; }