結果

問題 No.593 4進FizzBuzz
ユーザー NoNo
提出日時 2018-01-21 02:23:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,780 KB
最終ジャッジ日時 2024-06-07 12:10:01
合計ジャッジ時間 38,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 1,880 ms
14,452 KB
testcase_17 WA -
testcase_18 AC 1,849 ms
14,448 KB
testcase_19 AC 1,812 ms
14,524 KB
testcase_20 WA -
testcase_21 AC 1,823 ms
14,580 KB
testcase_22 AC 1,853 ms
14,648 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,902 ms
14,776 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,830 ms
14,644 KB
testcase_30 AC 1,888 ms
14,576 KB
testcase_31 AC 1,847 ms
14,448 KB
testcase_32 AC 1,817 ms
14,452 KB
testcase_33 AC 1,819 ms
14,648 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