結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー shobonvipshobonvip
提出日時 2022-11-24 04:15:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 188 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 53,184 KB
最終ジャッジ日時 2024-09-25 06:06:56
合計ジャッジ時間 2,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,996 KB
testcase_01 AC 38 ms
52,504 KB
testcase_02 AC 37 ms
52,516 KB
testcase_03 AC 37 ms
52,836 KB
testcase_04 AC 37 ms
52,032 KB
testcase_05 AC 37 ms
52,356 KB
testcase_06 AC 37 ms
52,340 KB
testcase_07 AC 36 ms
53,112 KB
testcase_08 AC 37 ms
52,076 KB
testcase_09 AC 36 ms
53,032 KB
testcase_10 AC 37 ms
52,280 KB
testcase_11 AC 36 ms
53,120 KB
testcase_12 AC 36 ms
52,556 KB
testcase_13 AC 37 ms
52,192 KB
testcase_14 AC 37 ms
52,728 KB
testcase_15 AC 36 ms
52,444 KB
testcase_16 AC 37 ms
52,708 KB
testcase_17 AC 37 ms
52,052 KB
testcase_18 AC 37 ms
52,612 KB
testcase_19 AC 36 ms
52,612 KB
testcase_20 AC 37 ms
53,184 KB
testcase_21 AC 37 ms
52,252 KB
testcase_22 AC 38 ms
52,420 KB
testcase_23 AC 38 ms
52,372 KB
testcase_24 AC 38 ms
52,220 KB
testcase_25 AC 37 ms
52,024 KB
testcase_26 AC 37 ms
52,480 KB
testcase_27 AC 38 ms
52,456 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 37 ms
52,364 KB
testcase_30 AC 37 ms
52,564 KB
testcase_31 AC 38 ms
52,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=list(map(int,input().split()))
ans = 0
for i in a:
	if i%3 == 0:
		if i%5 == 0:
			ans += 8
		else:
			ans += 4
	else:
		if i%5 == 0:
			ans += 4
		else:
			ans += len(str(i))
print(ans)
0