結果

問題 No.593 4進FizzBuzz
ユーザー KoshStormKoshStorm
提出日時 2017-11-10 23:07:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,704 KB
最終ジャッジ日時 2024-11-24 14:22:26
合計ジャッジ時間 35,933 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 24 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 24 ms
10,880 KB
testcase_15 AC 25 ms
10,880 KB
testcase_16 AC 1,726 ms
14,576 KB
testcase_17 WA -
testcase_18 AC 1,756 ms
14,576 KB
testcase_19 AC 1,711 ms
14,644 KB
testcase_20 WA -
testcase_21 AC 1,762 ms
14,580 KB
testcase_22 AC 1,824 ms
14,644 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,736 ms
14,608 KB
testcase_27 AC 1,706 ms
14,644 KB
testcase_28 WA -
testcase_29 AC 1,736 ms
14,644 KB
testcase_30 AC 1,722 ms
14,576 KB
testcase_31 AC 1,703 ms
14,580 KB
testcase_32 AC 1,724 ms
14,576 KB
testcase_33 AC 1,838 ms
14,644 KB
testcase_34 AC 1,716 ms
14,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# C問題

N = input()
l = len(N)

i = 0
check3 = 0
check5 = 0
while True:
	if i >= l:
		break
	check3 += int(N[i])
	if i % 2 == 0: 
		check5 += int(N[i])
	else:
		check5 -= int(N[i])

	i += 1

m1 = check3%3

if m1==0 and check5 == 0:
	print("FizzBuzz")
elif m1 == 0:
	print("Fizz")

elif check5 == 0:
	print("Buzz")

else:
	print(N)
0