結果

問題 No.593 4進FizzBuzz
ユーザー maspymaspy
提出日時 2020-01-01 18:53:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 143,776 KB
最終ジャッジ日時 2024-11-22 14:56:45
合計ジャッジ時間 17,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,368 KB
testcase_06 AC 29 ms
10,368 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 30 ms
10,368 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 29 ms
10,624 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 982 ms
143,644 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 988 ms
143,648 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 987 ms
143,648 KB
testcase_27 AC 1,021 ms
143,644 KB
testcase_28 AC 552 ms
52,000 KB
testcase_29 AC 994 ms
143,516 KB
testcase_30 AC 575 ms
52,000 KB
testcase_31 AC 537 ms
52,000 KB
testcase_32 WA -
testcase_33 AC 980 ms
143,644 KB
testcase_34 AC 538 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = [int(x) - ord('0') for x in read().rstrip()]

A = sum(N[::-1][::2])
B = sum(N[::-1][1::2])

x3 = (A - B) % 3
x5 = (A + B) % 5

if (not x3) and (not x5):
    print('FizzBuzz')
elif (not x3):
    print('Fizz')
elif (not x5):
    print('Buzz')
else:
    print(''.join(map(str,N)))
0