結果

問題 No.661 ハローキティはりんご3個分
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-06 20:56:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-09-06 20:56:14
合計ジャッジ時間 1,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,464 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,860 KB
testcase_03 AC 38 ms
53,152 KB
testcase_04 AC 37 ms
52,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(n):
	a=int(input())
	if a%80==0:
		print("ikisugi")
	elif a%10==0:
		print("sugi")
	elif a%8==0:
		print("iki")
	else:
		print(a//3)
0