結果

問題 No.593 4進FizzBuzz
ユーザー GrayCoderGrayCoder
提出日時 2017-11-12 15:01:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,648 KB
最終ジャッジ日時 2024-05-03 19:31:02
合計ジャッジ時間 13,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 560 ms
14,576 KB
testcase_17 WA -
testcase_18 AC 560 ms
14,576 KB
testcase_19 AC 565 ms
14,520 KB
testcase_20 WA -
testcase_21 AC 574 ms
14,452 KB
testcase_22 AC 571 ms
14,648 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 571 ms
14,644 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 563 ms
14,516 KB
testcase_30 AC 549 ms
14,576 KB
testcase_31 AC 556 ms
14,580 KB
testcase_32 AC 550 ms
14,576 KB
testcase_33 AC 516 ms
14,520 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = input()

    three = 3
    five = 11
    even = 0
    odd = 0
    i = len(N) - 1
    while i > 0:
        odd += int(N[i])
        even += int(N[i-1])
        i -= 2
    if not i:
        odd += int(N[0])

    ans = ''
    if not (odd + even) % three:
        ans += 'Fizz'
    if not (odd - even) % five:
        ans += 'Buzz'
    if ans == '':
        print(N)
    else:
        print(ans)

main()
0