結果

問題 No.593 4進FizzBuzz
ユーザー maspymaspy
提出日時 2020-01-01 18:53:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 143,776 KB
最終ジャッジ日時 2024-05-02 04:28:35
合計ジャッジ時間 18,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 33 ms
10,368 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 32 ms
10,496 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
10,496 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,016 ms
143,644 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,015 ms
143,648 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,014 ms
143,644 KB
testcase_27 AC 1,032 ms
143,520 KB
testcase_28 AC 559 ms
52,000 KB
testcase_29 AC 1,016 ms
143,520 KB
testcase_30 AC 565 ms
52,128 KB
testcase_31 AC 558 ms
51,996 KB
testcase_32 WA -
testcase_33 AC 1,019 ms
143,388 KB
testcase_34 AC 580 ms
52,256 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