結果

問題 No.593 4進FizzBuzz
ユーザー H20H20
提出日時 2021-11-25 14:21:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 299,240 KB
最終ジャッジ日時 2024-06-28 05:35:14
合計ジャッジ時間 12,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,328 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 AC 40 ms
51,328 KB
testcase_08 AC 39 ms
51,328 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 39 ms
51,328 KB
testcase_11 AC 39 ms
51,456 KB
testcase_12 AC 40 ms
51,328 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 39 ms
51,456 KB
testcase_15 AC 39 ms
51,328 KB
testcase_16 AC 454 ms
298,260 KB
testcase_17 WA -
testcase_18 AC 448 ms
298,508 KB
testcase_19 AC 514 ms
298,972 KB
testcase_20 WA -
testcase_21 AC 448 ms
297,868 KB
testcase_22 AC 513 ms
298,764 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 511 ms
299,016 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 514 ms
299,240 KB
testcase_30 AC 447 ms
298,636 KB
testcase_31 AC 453 ms
298,252 KB
testcase_32 AC 457 ms
297,868 KB
testcase_33 AC 507 ms
299,144 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(input())
for i in range(len(N)):
    N[i]=int(N[i])

isFizz = sum(N)%3==0
temp = 0
for i in range(len(N)):
    if i%2==0:
        temp+=N[i]
    else:
        temp-=N[i]
isBuzz = temp%11==0
if isFizz and isBuzz:
    print('FizzBuzz')
elif isFizz:
    print('Fizz')
elif isBuzz:
    print('Buzz')
else:
    print(''.join(map(str,N)))
0