結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | akitsugu777 |
提出日時 | 2021-03-04 15:32:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 196 bytes |
コンパイル時間 | 339 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-04 23:27:33 |
合計ジャッジ時間 | 967 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 25 ms
10,496 KB |
testcase_02 | WA | - |
testcase_03 | AC | 24 ms
10,368 KB |
testcase_04 | AC | 23 ms
10,496 KB |
ソースコード
N, *L = map(int, open(0)) A = 0 for n in L: if n % 40 == 0: A = 3 elif n % 10 == 0: A = 2 elif n % 8 == 0: A = 1 print([n//3, 'iki', 'sugi', 'ikisugi'][A])