結果

問題 No.661 ハローキティはりんご3個分
ユーザー hooooyaerthooooyaert
提出日時 2018-07-24 11:16:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-06-22 06:16:35
合計ジャッジ時間 5,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 453 ms
44,316 KB
testcase_01 AC 446 ms
44,060 KB
testcase_02 AC 451 ms
44,456 KB
testcase_03 AC 448 ms
44,324 KB
testcase_04 AC 448 ms
43,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
row = input()
N = np.zeros(int(row))
for i in range(int(row)):
    N[i]= input()
    if N[i] % 8 == 0 and N[i] % 10 != 0:
        print('iki')
    elif N[i] % 8 != 0 and N[i] % 10 == 0:
        print('sugi')
    elif N[i] % 8 == 0 and N[i] % 10 == 0:
        print('ikisugi')
    elif N[i] % 3 == 0:
        print(int(N[i]/3))
0