結果

問題 No.661 ハローキティはりんご3個分
ユーザー yohei-kuyohei-ku
提出日時 2018-03-28 00:14:59
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-25 12:58:54
合計ジャッジ時間 1,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,400 KB
testcase_01 AC 11 ms
6,528 KB
testcase_02 AC 11 ms
6,528 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 12 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

i = input()
N = []
for j in range(0,i):
    N.append(input())

for k in range(0,i):
    if N[k]%8 == 0 and N[k]%10 == 0:
        print 'ikisugi'
    elif N[k]%8 == 0:
        print 'iki'
    elif N[k]%10 == 0:
        print 'sugi'
    elif N[k]%3 == 0:
        print N[k]/3
    else:
        pass
0