結果

問題 No.593 4進FizzBuzz
ユーザー RyutoRyuto
提出日時 2017-12-16 15:24:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 187,608 KB
最終ジャッジ日時 2024-12-14 19:23:34
合計ジャッジ時間 8,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,448 KB
testcase_01 AC 37 ms
52,704 KB
testcase_02 AC 37 ms
53,220 KB
testcase_03 AC 36 ms
52,308 KB
testcase_04 AC 37 ms
52,832 KB
testcase_05 AC 38 ms
53,368 KB
testcase_06 AC 39 ms
52,156 KB
testcase_07 AC 38 ms
52,336 KB
testcase_08 AC 38 ms
52,724 KB
testcase_09 AC 38 ms
53,908 KB
testcase_10 AC 38 ms
53,624 KB
testcase_11 AC 37 ms
52,136 KB
testcase_12 AC 38 ms
52,308 KB
testcase_13 AC 38 ms
53,072 KB
testcase_14 AC 36 ms
52,920 KB
testcase_15 AC 36 ms
52,396 KB
testcase_16 AC 293 ms
187,456 KB
testcase_17 AC 333 ms
187,124 KB
testcase_18 AC 285 ms
187,100 KB
testcase_19 AC 344 ms
187,608 KB
testcase_20 AC 246 ms
187,064 KB
testcase_21 AC 284 ms
187,084 KB
testcase_22 AC 342 ms
186,760 KB
testcase_23 AC 233 ms
187,188 KB
testcase_24 AC 333 ms
187,464 KB
testcase_25 AC 333 ms
187,188 KB
testcase_26 AC 338 ms
186,980 KB
testcase_27 AC 337 ms
186,996 KB
testcase_28 AC 236 ms
187,468 KB
testcase_29 AC 334 ms
186,952 KB
testcase_30 AC 235 ms
187,608 KB
testcase_31 AC 287 ms
187,060 KB
testcase_32 AC 337 ms
187,288 KB
testcase_33 AC 336 ms
187,204 KB
testcase_34 AC 286 ms
187,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def chmod(p, n, mod):
    tmp = 0
    for i in range(len(n)):
        tmp = (tmp * p + int(n[i])) % mod
    return True if tmp == 0 else False

N = input()
SumN = sum([int(x) for x in list(N)])

if chmod(4, N, 15):
    print('FizzBuzz')
elif chmod(4, N, 3):
    print('Fizz')
elif chmod(4, N, 5):
    print('Buzz')
else:
    print(N)
0