結果

問題 No.1462 最弱WEAKER
ユーザー rlangevinrlangevin
提出日時 2024-06-20 08:52:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 53,068 KB
最終ジャッジ日時 2024-06-20 08:52:52
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,412 KB
testcase_01 AC 36 ms
52,616 KB
testcase_02 AC 38 ms
52,356 KB
testcase_03 AC 38 ms
52,264 KB
testcase_04 AC 37 ms
52,160 KB
testcase_05 AC 40 ms
51,876 KB
testcase_06 AC 40 ms
52,296 KB
testcase_07 AC 36 ms
52,116 KB
testcase_08 AC 36 ms
52,672 KB
testcase_09 AC 36 ms
52,340 KB
testcase_10 AC 51 ms
52,016 KB
testcase_11 AC 37 ms
52,072 KB
testcase_12 AC 36 ms
51,904 KB
testcase_13 AC 37 ms
53,012 KB
testcase_14 AC 36 ms
52,160 KB
testcase_15 AC 36 ms
52,124 KB
testcase_16 AC 37 ms
52,792 KB
testcase_17 AC 37 ms
52,204 KB
testcase_18 AC 36 ms
52,908 KB
testcase_19 AC 37 ms
53,068 KB
testcase_20 AC 37 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
v = 0
while N:
    v += N % 3
    N //= 3
print("NO") if v % 2 else print("YES") 
0