結果
| 問題 | No.1256 連続整数列 | 
| コンテスト | |
| ユーザー |  timi | 
| 提出日時 | 2020-10-17 00:58:19 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 203 bytes | 
| コンパイル時間 | 258 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-07-21 01:36:10 | 
| 合計ジャッジ時間 | 2,111 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 12 WA * 14 | 
ソースコード
N=int(input())
if N==1:
    print('NO')
elif N%2==1:
    print('YES')
else:
    for i in range(10**5):
        d=N-(i+2)
        if d%(2*(i+2))==0:
            print('YES')
            exit()
print('NO')
            
            
            
        