結果
| 問題 | No.1256 連続整数列 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-16 22:10:50 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 175 bytes |
| 記録 | |
| コンパイル時間 | 540 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,612 KB |
| 最終ジャッジ日時 | 2026-04-03 02:58:04 |
| 合計ジャッジ時間 | 8,243 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 39 |
ソースコード
a = int(input()) * 2
for i in range(1, int(a ** 0.5) + 1):
if a % i == 0:
if i + 1 == a // i and i >= 3:
print('YES')
exit()
print('NO')