結果

問題 No.593 4進FizzBuzz
ユーザー NoNo
提出日時 2018-01-21 02:23:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,776 KB
最終ジャッジ日時 2024-12-25 15:27:56
合計ジャッジ時間 35,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 1,660 ms
14,452 KB
testcase_17 WA -
testcase_18 AC 1,669 ms
14,452 KB
testcase_19 AC 1,682 ms
14,644 KB
testcase_20 WA -
testcase_21 AC 1,738 ms
14,580 KB
testcase_22 AC 1,752 ms
14,644 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,805 ms
14,516 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,746 ms
14,520 KB
testcase_30 AC 1,695 ms
14,576 KB
testcase_31 AC 1,700 ms
14,580 KB
testcase_32 AC 1,707 ms
14,448 KB
testcase_33 AC 1,770 ms
14,520 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
ln = len(n)
a = 0
b = 0
c = 0
ans = ""

for i in range(0,ln):
    a += int(n[i])
    if i % 2 == 0:
        b += int(n[i])
    else:
        c += int(n[i])
    
if a % 3 == 0:
    ans += "Fizz"
if (b - c) % 11  == 0:
    ans += "Buzz"
if ans == "":
    ans = n
    
print(ans)
0