結果

問題 No.593 4進FizzBuzz
ユーザー bellangeldindonbellangeldindon
提出日時 2019-05-21 11:46:28
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 1,353 ms
コンパイル使用メモリ 76,848 KB
実行使用メモリ 80,288 KB
最終ジャッジ日時 2024-09-17 08:53:21
合計ジャッジ時間 7,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,708 KB
testcase_01 AC 74 ms
75,552 KB
testcase_02 AC 73 ms
75,140 KB
testcase_03 AC 73 ms
75,536 KB
testcase_04 AC 74 ms
75,292 KB
testcase_05 AC 73 ms
75,272 KB
testcase_06 AC 73 ms
75,424 KB
testcase_07 AC 73 ms
75,572 KB
testcase_08 AC 75 ms
75,452 KB
testcase_09 AC 73 ms
75,168 KB
testcase_10 AC 74 ms
75,144 KB
testcase_11 AC 75 ms
75,556 KB
testcase_12 AC 77 ms
75,660 KB
testcase_13 AC 74 ms
75,412 KB
testcase_14 AC 74 ms
75,564 KB
testcase_15 AC 74 ms
75,324 KB
testcase_16 AC 146 ms
80,136 KB
testcase_17 AC 138 ms
80,032 KB
testcase_18 AC 138 ms
80,016 KB
testcase_19 AC 141 ms
80,288 KB
testcase_20 AC 139 ms
80,160 KB
testcase_21 AC 140 ms
80,004 KB
testcase_22 AC 138 ms
80,144 KB
testcase_23 AC 143 ms
80,140 KB
testcase_24 AC 139 ms
80,124 KB
testcase_25 AC 137 ms
80,240 KB
testcase_26 AC 141 ms
80,032 KB
testcase_27 AC 143 ms
79,784 KB
testcase_28 AC 141 ms
79,804 KB
testcase_29 AC 143 ms
79,764 KB
testcase_30 AC 136 ms
80,028 KB
testcase_31 AC 137 ms
80,044 KB
testcase_32 AC 140 ms
79,900 KB
testcase_33 AC 140 ms
79,812 KB
testcase_34 AC 139 ms
80,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod3 = [0, 1, 2, 0]
mod5 = [[0, 1, 2, 3], [0, 4, 3, 2]]
N = raw_input()
cnt3 = 0
cnt5 = 0
for i in range(0, len(N)):
	cnt3 += mod3[int(N[-1-i])]
	cnt5 += mod5[i%2][int(N[-1-i])]
ans = ''
if cnt3%3 == 0: ans = ans + 'Fizz'
if cnt5%5 == 0: ans = ans + 'Buzz'
if ans != '': print ans
else: print N
0