結果

問題 No.593 4進FizzBuzz
ユーザー convexineqconvexineq
提出日時 2021-03-10 22:27:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 79,180 KB
最終ジャッジ日時 2024-10-12 12:26:41
合計ジャッジ時間 6,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,008 KB
testcase_01 AC 36 ms
52,372 KB
testcase_02 AC 36 ms
53,092 KB
testcase_03 AC 37 ms
53,224 KB
testcase_04 AC 35 ms
53,352 KB
testcase_05 AC 36 ms
52,896 KB
testcase_06 AC 36 ms
52,412 KB
testcase_07 AC 35 ms
52,440 KB
testcase_08 AC 37 ms
52,824 KB
testcase_09 AC 37 ms
53,372 KB
testcase_10 AC 38 ms
51,944 KB
testcase_11 AC 38 ms
52,968 KB
testcase_12 AC 37 ms
52,908 KB
testcase_13 AC 37 ms
52,436 KB
testcase_14 AC 38 ms
52,208 KB
testcase_15 AC 38 ms
53,148 KB
testcase_16 AC 147 ms
78,764 KB
testcase_17 AC 149 ms
78,880 KB
testcase_18 AC 147 ms
78,812 KB
testcase_19 AC 150 ms
78,928 KB
testcase_20 AC 150 ms
78,812 KB
testcase_21 AC 149 ms
78,744 KB
testcase_22 AC 150 ms
78,684 KB
testcase_23 AC 150 ms
78,704 KB
testcase_24 AC 151 ms
78,820 KB
testcase_25 AC 149 ms
78,756 KB
testcase_26 AC 152 ms
78,684 KB
testcase_27 AC 152 ms
78,800 KB
testcase_28 AC 149 ms
78,676 KB
testcase_29 AC 151 ms
78,784 KB
testcase_30 AC 151 ms
78,512 KB
testcase_31 AC 150 ms
78,700 KB
testcase_32 AC 151 ms
78,636 KB
testcase_33 AC 153 ms
79,180 KB
testcase_34 AC 148 ms
78,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s,x):
    r = 0
    for i in map(int,s):
        r = (r*4+i)%x
    return r==0

s = input()
x3 = f(s,3)
x5 = f(s,5)
if x3 and x5:
    print("FizzBuzz")
elif x3:
    print("Fizz")
elif x5:
    print("Buzz")
else:
    print(s)
0