結果

問題 No.593 4進FizzBuzz
ユーザー ssmkzkssmkzk
提出日時 2018-10-15 16:12:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 388 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,284 KB
最終ジャッジ日時 2024-04-20 20:27:20
合計ジャッジ時間 44,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 24 ms
10,624 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
l = list(N)

real_num15 = 0
real_num3 = 0
real_num5 = 0

for i, l_i in enumerate(l):
    real_num15 = ((real_num15 * 4) + int(l_i)) % 15
    real_num3 = ((real_num3 * 4) + int(l_i)) % 3
    real_num5 = ((real_num5 * 4) + int(l_i)) % 5

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

0