結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,684 KB
testcase_01 AC 35 ms
52,340 KB
testcase_02 AC 35 ms
51,628 KB
testcase_03 AC 35 ms
53,304 KB
testcase_04 AC 35 ms
52,268 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