結果

問題 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
コンパイル時間 202 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,776 KB
最終ジャッジ日時 2024-05-03 13:56:12
合計ジャッジ時間 40,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 1,938 ms
14,708 KB
testcase_17 WA -
testcase_18 AC 1,946 ms
14,580 KB
testcase_19 AC 1,958 ms
14,660 KB
testcase_20 WA -
testcase_21 AC 1,918 ms
14,576 KB
testcase_22 AC 1,926 ms
14,648 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,921 ms
14,648 KB
testcase_27 AC 1,943 ms
14,772 KB
testcase_28 WA -
testcase_29 AC 1,938 ms
14,512 KB
testcase_30 AC 1,847 ms
14,448 KB
testcase_31 AC 1,881 ms
14,452 KB
testcase_32 AC 1,838 ms
14,576 KB
testcase_33 TLE -
testcase_34 AC 1,982 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