結果

問題 No.593 4進FizzBuzz
ユーザー htkbhtkb
提出日時 2017-11-10 22:53:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,107 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,756 KB
最終ジャッジ日時 2024-05-03 13:04:41
合計ジャッジ時間 22,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 24 ms
10,624 KB
testcase_11 AC 24 ms
10,624 KB
testcase_12 AC 24 ms
10,624 KB
testcase_13 AC 24 ms
10,624 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 1,022 ms
14,756 KB
testcase_17 AC 1,007 ms
14,752 KB
testcase_18 AC 1,030 ms
14,624 KB
testcase_19 AC 1,035 ms
14,496 KB
testcase_20 AC 1,042 ms
14,496 KB
testcase_21 AC 1,035 ms
14,500 KB
testcase_22 AC 1,048 ms
14,624 KB
testcase_23 AC 1,057 ms
14,576 KB
testcase_24 AC 1,038 ms
14,628 KB
testcase_25 AC 1,098 ms
14,500 KB
testcase_26 AC 1,078 ms
14,496 KB
testcase_27 AC 1,107 ms
14,624 KB
testcase_28 AC 1,027 ms
14,624 KB
testcase_29 AC 1,010 ms
14,628 KB
testcase_30 AC 1,064 ms
14,624 KB
testcase_31 AC 1,037 ms
14,496 KB
testcase_32 AC 1,077 ms
14,624 KB
testcase_33 AC 1,040 ms
14,500 KB
testcase_34 AC 1,030 ms
14,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
n10 = 0
mul = 1
for i, c in enumerate(n[::-1]):
    n10 = (n10 + int(c)*mul)%15
    mul = (mul*4)%15
print("Fizz"*(n10%3==0)+"Buzz"*(n10%5==0) or n)
0