結果
問題 | No.276 連続する整数の和(1) |
ユーザー | kahuu |
提出日時 | 2016-04-03 00:38:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 301 bytes |
コンパイル時間 | 1,759 ms |
コンパイル使用メモリ | 158,752 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-10-02 12:31:35 |
合計ジャッジ時間 | 6,097 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,632 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | LL n; scanf("%lld", &n); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define LL long long LL sum(LL x); int main(void) { LL n; scanf("%lld", &n); for (LL i = n; i >= 1; i--) { if ((sum(n) * (n / i) + sum(n % i)) % i == 0) { printf("%lld\n", i); break; } } return 0; } LL sum(LL x) { return (1 + x) * x / 2; }