結果

問題 No.661 ハローキティはりんご3個分
ユーザー convexineqconvexineq
提出日時 2021-03-02 20:17:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-04-14 04:52:21
合計ジャッジ時間 1,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,204 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 37 ms
52,112 KB
testcase_03 AC 36 ms
53,428 KB
testcase_04 AC 37 ms
53,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    n = int(input())
    if n%40==0:
        print("ikisugi")
    elif n%10 == 0:
        print("sugi")
    elif n%8 == 0:
        print("iki")
    else:
        print(n//3)
0