結果

問題 No.593 4進FizzBuzz
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-07 00:01:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 174,220 KB
最終ジャッジ日時 2024-06-11 23:30:18
合計ジャッジ時間 7,645 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 38 ms
51,940 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 212 ms
171,772 KB
testcase_17 AC 210 ms
171,928 KB
testcase_18 AC 211 ms
171,460 KB
testcase_19 AC 215 ms
174,220 KB
testcase_20 AC 212 ms
171,528 KB
testcase_21 AC 209 ms
171,668 KB
testcase_22 AC 213 ms
173,508 KB
testcase_23 AC 210 ms
171,868 KB
testcase_24 AC 212 ms
171,768 KB
testcase_25 AC 209 ms
171,868 KB
testcase_26 AC 214 ms
173,900 KB
testcase_27 AC 215 ms
174,052 KB
testcase_28 AC 212 ms
171,932 KB
testcase_29 AC 211 ms
173,444 KB
testcase_30 AC 210 ms
171,916 KB
testcase_31 AC 212 ms
172,052 KB
testcase_32 AC 211 ms
172,060 KB
testcase_33 AC 221 ms
173,936 KB
testcase_34 AC 211 ms
171,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = str(input())
s = list(n)
s.reverse()
r3 = 0
r5 = 0
for i, c in enumerate(s):
    c = int(c)
    r3 += c
    if i%2 == 0:
        r5 += c
    else:
        r5 -= c
r3 %= 3
r5 %= 5
if r3 == 0 and r5 == 0:
    print('FizzBuzz')
elif r3 == 0:
    print('Fizz')
elif r5 == 0:
    print('Buzz')
else:
    print(n)
0