結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
52,176 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 34 ms
51,824 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 33 ms
51,712 KB
testcase_11 AC 33 ms
52,480 KB
testcase_12 AC 34 ms
51,584 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 33 ms
51,840 KB
testcase_15 AC 35 ms
51,712 KB
testcase_16 AC 140 ms
78,720 KB
testcase_17 AC 145 ms
78,612 KB
testcase_18 AC 138 ms
78,756 KB
testcase_19 AC 142 ms
79,000 KB
testcase_20 AC 138 ms
78,592 KB
testcase_21 AC 137 ms
79,104 KB
testcase_22 AC 141 ms
78,948 KB
testcase_23 AC 141 ms
78,800 KB
testcase_24 AC 144 ms
78,976 KB
testcase_25 AC 141 ms
78,464 KB
testcase_26 AC 141 ms
79,256 KB
testcase_27 AC 144 ms
78,736 KB
testcase_28 AC 139 ms
78,552 KB
testcase_29 AC 140 ms
78,988 KB
testcase_30 AC 141 ms
78,720 KB
testcase_31 AC 140 ms
78,752 KB
testcase_32 AC 138 ms
78,464 KB
testcase_33 AC 144 ms
78,728 KB
testcase_34 AC 138 ms
78,976 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