結果

問題 No.593 4進FizzBuzz
ユーザー GrayCoderGrayCoder
提出日時 2017-11-12 15:01:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,776 KB
最終ジャッジ日時 2024-11-24 23:13:53
合計ジャッジ時間 14,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 621 ms
14,448 KB
testcase_17 WA -
testcase_18 AC 620 ms
14,452 KB
testcase_19 AC 622 ms
14,516 KB
testcase_20 WA -
testcase_21 AC 619 ms
14,452 KB
testcase_22 AC 623 ms
14,520 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 621 ms
14,644 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 625 ms
14,644 KB
testcase_30 AC 609 ms
14,452 KB
testcase_31 AC 609 ms
14,576 KB
testcase_32 AC 612 ms
14,576 KB
testcase_33 AC 570 ms
14,516 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