結果
| 問題 | No.661 ハローキティはりんご3個分 |
| コンテスト | |
| ユーザー |
Nisshy_24
|
| 提出日時 | 2018-04-04 01:21:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 277 bytes |
| 記録 | |
| コンパイル時間 | 450 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,436 KB |
| 最終ジャッジ日時 | 2026-03-13 00:30:48 |
| 合計ジャッジ時間 | 2,238 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 5 |
ソースコード
n = int(input())
outs = []
for count in range(n):
apple = int(input)
if (apple % 8) and (apple % 10):
outs.append("ikisugi")
elif apple % 10:
outs.append("sugi")
elif apple % 8:
outs.append("iki")
else:
a = apple / 3
outs.append(a)
for out in outs:
print(out)
Nisshy_24