結果

問題 No.593 4進FizzBuzz
ユーザー noriocnorioc
提出日時 2024-08-28 22:17:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 79,720 KB
最終ジャッジ日時 2024-08-28 22:17:45
合計ジャッジ時間 5,965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,040 KB
testcase_01 AC 35 ms
52,676 KB
testcase_02 AC 37 ms
52,360 KB
testcase_03 AC 36 ms
52,572 KB
testcase_04 AC 37 ms
52,488 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 35 ms
52,464 KB
testcase_08 AC 36 ms
51,996 KB
testcase_09 AC 36 ms
52,692 KB
testcase_10 AC 37 ms
51,872 KB
testcase_11 AC 37 ms
52,156 KB
testcase_12 AC 36 ms
51,936 KB
testcase_13 AC 38 ms
51,876 KB
testcase_14 AC 37 ms
53,280 KB
testcase_15 AC 37 ms
53,232 KB
testcase_16 AC 87 ms
79,236 KB
testcase_17 AC 85 ms
79,244 KB
testcase_18 AC 86 ms
78,940 KB
testcase_19 AC 88 ms
79,172 KB
testcase_20 AC 87 ms
78,904 KB
testcase_21 AC 88 ms
79,024 KB
testcase_22 AC 88 ms
79,720 KB
testcase_23 AC 86 ms
79,128 KB
testcase_24 AC 86 ms
79,132 KB
testcase_25 AC 86 ms
79,284 KB
testcase_26 AC 88 ms
79,336 KB
testcase_27 AC 90 ms
79,324 KB
testcase_28 AC 85 ms
79,172 KB
testcase_29 AC 88 ms
79,072 KB
testcase_30 AC 75 ms
68,720 KB
testcase_31 AC 75 ms
68,476 KB
testcase_32 AC 76 ms
69,528 KB
testcase_33 AC 88 ms
79,596 KB
testcase_34 AC 84 ms
79,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

x = 0
for c in S:
    x = 4 * x + int(c)
    x %= 15

if x % 15 == 0:
    print('FizzBuzz')
elif x % 3 == 0:
    print('Fizz')
elif x % 5 == 0:
    print('Buzz')
else:
    print(S)
0