結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | knt3110 |
提出日時 | 2018-05-04 00:27:40 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 64,768 KB |
最終ジャッジ日時 | 2024-06-28 00:55:00 |
合計ジャッジ時間 | 908 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
ソースコード
i=int(input()) n=[int(input()) for j in range(i)] for j in range(n): if n[j]%80==0: print('ikisugi') elif n[j]%8==0: print('iki') elif n[j]%10==0: print('sugi') else: print(n[j]//3)