結果

問題 No.593 4進FizzBuzz
ユーザー hedwig100hedwig100
提出日時 2020-05-19 14:51:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 83,368 KB
最終ジャッジ日時 2024-10-01 22:42:02
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,156 KB
testcase_01 AC 37 ms
53,200 KB
testcase_02 AC 37 ms
53,148 KB
testcase_03 AC 37 ms
52,492 KB
testcase_04 AC 38 ms
53,068 KB
testcase_05 AC 37 ms
53,972 KB
testcase_06 AC 37 ms
53,300 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 36 ms
52,820 KB
testcase_09 AC 37 ms
52,660 KB
testcase_10 AC 37 ms
52,948 KB
testcase_11 AC 37 ms
52,724 KB
testcase_12 AC 37 ms
53,112 KB
testcase_13 AC 37 ms
52,128 KB
testcase_14 AC 36 ms
53,068 KB
testcase_15 AC 37 ms
52,416 KB
testcase_16 AC 136 ms
83,184 KB
testcase_17 AC 135 ms
83,092 KB
testcase_18 AC 137 ms
83,300 KB
testcase_19 AC 157 ms
83,028 KB
testcase_20 AC 136 ms
83,036 KB
testcase_21 AC 136 ms
83,352 KB
testcase_22 AC 156 ms
83,304 KB
testcase_23 AC 135 ms
83,368 KB
testcase_24 AC 136 ms
82,968 KB
testcase_25 AC 136 ms
82,884 KB
testcase_26 AC 159 ms
82,924 KB
testcase_27 AC 157 ms
83,180 KB
testcase_28 AC 135 ms
82,904 KB
testcase_29 AC 155 ms
83,056 KB
testcase_30 AC 135 ms
83,252 KB
testcase_31 AC 139 ms
83,284 KB
testcase_32 AC 137 ms
83,068 KB
testcase_33 AC 155 ms
83,284 KB
testcase_34 AC 135 ms
82,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()[::-1]
three = 0
five = 0
power3 = 1
power5 = 1
for i in range(len(N)):
    three += power3 * int(N[i])
    three %= 3
    five += power5 * int(N[i])
    five %= 5
    power3 *= 4
    power3 %= 3
    power5 *= 4
    power5 %= 5
if three == 0 and five == 0:
    print('FizzBuzz')
elif three == 0:
    print('Fizz')
elif five == 0:
    print('Buzz')
else:
    print(N[::-1])
    
0