結果

問題 No.1256 連続整数列
ユーザー roarisroaris
提出日時 2020-11-18 16:33:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 59,724 KB
最終ジャッジ日時 2024-07-23 09:05:45
合計ジャッジ時間 2,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 36 ms
51,552 KB
testcase_04 AC 35 ms
52,760 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,816 KB
testcase_07 AC 37 ms
52,200 KB
testcase_08 AC 35 ms
52,936 KB
testcase_09 AC 39 ms
58,804 KB
testcase_10 AC 36 ms
51,940 KB
testcase_11 AC 36 ms
52,604 KB
testcase_12 AC 36 ms
52,952 KB
testcase_13 AC 36 ms
53,488 KB
testcase_14 AC 36 ms
52,876 KB
testcase_15 AC 36 ms
52,272 KB
testcase_16 AC 36 ms
51,696 KB
testcase_17 AC 36 ms
53,212 KB
testcase_18 AC 36 ms
52,440 KB
testcase_19 AC 36 ms
52,052 KB
testcase_20 AC 36 ms
52,204 KB
testcase_21 AC 36 ms
52,232 KB
testcase_22 AC 35 ms
52,120 KB
testcase_23 AC 36 ms
52,444 KB
testcase_24 AC 36 ms
52,492 KB
testcase_25 AC 37 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())

for i in range(3, 10**5):
    if A-i*(i-1)//2>=0 and (A-i*(i-1)//2)%i==0:
        print('YES')
        exit()

print('NO')
0