結果

問題 No.593 4進FizzBuzz
ユーザー ssmkzkssmkzk
提出日時 2018-10-15 16:26:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,542 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,116 KB
最終ジャッジ日時 2024-10-12 18:32:57
合計ジャッジ時間 31,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,496 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 29 ms
10,496 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 29 ms
10,496 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 1,488 ms
28,196 KB
testcase_17 AC 1,480 ms
28,200 KB
testcase_18 AC 1,489 ms
28,324 KB
testcase_19 AC 1,514 ms
30,112 KB
testcase_20 AC 1,506 ms
28,196 KB
testcase_21 AC 1,503 ms
28,124 KB
testcase_22 AC 1,535 ms
30,116 KB
testcase_23 AC 1,490 ms
28,452 KB
testcase_24 AC 1,496 ms
28,324 KB
testcase_25 AC 1,507 ms
28,320 KB
testcase_26 AC 1,487 ms
29,988 KB
testcase_27 AC 1,542 ms
29,988 KB
testcase_28 AC 1,529 ms
28,196 KB
testcase_29 AC 1,506 ms
29,988 KB
testcase_30 AC 1,488 ms
28,196 KB
testcase_31 AC 1,507 ms
28,320 KB
testcase_32 AC 1,459 ms
28,192 KB
testcase_33 AC 1,508 ms
30,076 KB
testcase_34 AC 1,527 ms
28,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
l = list(N)

real_num3 = 0
real_num5 = 0

for l_i in l:

    real_num3 = ((real_num3 * 4) + int(l_i)) % 3
    real_num5 = ((real_num5 * 4) + int(l_i)) % 5

if real_num3 + real_num5 == 0:
    print("FizzBuzz")
elif real_num3 == 0:
    print("Fizz")
elif real_num5 == 0:
    print("Buzz")
else:
    print(N)

0