結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 32 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 32 ms
10,368 KB
testcase_13 AC 32 ms
10,368 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 561 ms
52,124 KB
testcase_17 AC 558 ms
51,996 KB
testcase_18 AC 558 ms
51,992 KB
testcase_19 AC 1,020 ms
143,652 KB
testcase_20 AC 556 ms
52,000 KB
testcase_21 AC 552 ms
52,036 KB
testcase_22 AC 1,021 ms
143,516 KB
testcase_23 AC 550 ms
52,128 KB
testcase_24 AC 553 ms
52,124 KB
testcase_25 AC 553 ms
52,128 KB
testcase_26 AC 1,021 ms
143,520 KB
testcase_27 AC 1,005 ms
143,648 KB
testcase_28 AC 561 ms
52,000 KB
testcase_29 AC 1,010 ms
143,644 KB
testcase_30 AC 552 ms
51,996 KB
testcase_31 AC 552 ms
52,000 KB
testcase_32 AC 559 ms
52,252 KB
testcase_33 AC 1,010 ms
143,776 KB
testcase_34 AC 562 ms
52,252 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