結果
| 問題 | No.1256 連続整数列 | 
| コンテスト | |
| ユーザー |  Kiri8128 | 
| 提出日時 | 2020-10-16 21:21:17 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 78 bytes | 
| コンパイル時間 | 159 ms | 
| コンパイル使用メモリ | 82,452 KB | 
| 実行使用メモリ | 53,752 KB | 
| 最終ジャッジ日時 | 2024-07-21 01:09:00 | 
| 合計ジャッジ時間 | 2,013 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 24 WA * 2 | 
ソースコード
A = int(input())
while A % 2 == 0:
    A //= 2
print("YES" if A > 1 else "NO")
            
            
            
        