結果
| 問題 |
No.661 ハローキティはりんご3個分
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-03-23 01:15:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 2,000 ms |
| コード長 | 244 bytes |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-06-24 20:33:53 |
| 合計ジャッジ時間 | 657 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
n = int(input())
kity = {
(True, True) : 'ikisugi',
(True, False) : 'iki',
(False, True) : 'sugi'
}
for _ in range(n):
apple = int(input())
print(kity.get((apple%8==0, apple%10==0), apple//3))