結果

問題 No.661 ハローキティはりんご3個分
ユーザー knt3110knt3110
提出日時 2018-05-04 00:28:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 71,440 KB
最終ジャッジ日時 2023-09-10 09:27:17
合計ジャッジ時間 1,225 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,440 KB
testcase_01 WA -
testcase_02 AC 71 ms
71,384 KB
testcase_03 AC 71 ms
71,328 KB
testcase_04 AC 71 ms
71,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

i=int(input())
n=[int(input()) for j in range(i)]

for j in range(i):
    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)
0