結果

問題 No.1003 サイコロの実装 (1)
ユーザー McGregorshMcGregorsh
提出日時 2023-04-29 12:33:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 53,608 KB
最終ジャッジ日時 2024-11-18 09:48:47
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,872 KB
testcase_01 AC 34 ms
52,112 KB
testcase_02 AC 37 ms
52,040 KB
testcase_03 AC 34 ms
52,820 KB
testcase_04 AC 33 ms
53,280 KB
testcase_05 AC 34 ms
52,204 KB
testcase_06 AC 33 ms
52,636 KB
testcase_07 AC 34 ms
52,484 KB
testcase_08 WA -
testcase_09 AC 33 ms
52,768 KB
testcase_10 AC 33 ms
52,888 KB
testcase_11 AC 33 ms
53,080 KB
testcase_12 WA -
testcase_13 AC 34 ms
52,572 KB
testcase_14 AC 34 ms
52,484 KB
testcase_15 WA -
testcase_16 AC 34 ms
52,144 KB
testcase_17 AC 32 ms
52,756 KB
testcase_18 AC 34 ms
52,404 KB
testcase_19 WA -
testcase_20 AC 32 ms
52,772 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 35 ms
52,916 KB
testcase_25 AC 32 ms
52,908 KB
testcase_26 AC 32 ms
51,824 KB
testcase_27 AC 33 ms
52,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

while N % 6 and N > 6 == 0:
	N //= 6

if N != 6:
	print('No')
else:
	print('Yes')
0