結果

問題 No.2016 Countdown Divisors
ユーザー nohakai3nohakai3
提出日時 2022-07-24 20:44:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-07-06 15:53:25
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 297 ms
11,648 KB
testcase_02 AC 303 ms
11,776 KB
testcase_03 AC 280 ms
11,776 KB
testcase_04 AC 243 ms
11,648 KB
testcase_05 AC 231 ms
11,648 KB
testcase_06 AC 99 ms
11,136 KB
testcase_07 AC 101 ms
11,264 KB
testcase_08 AC 293 ms
11,648 KB
testcase_09 AC 297 ms
11,648 KB
testcase_10 AC 294 ms
11,776 KB
testcase_11 AC 303 ms
11,776 KB
testcase_12 AC 291 ms
11,648 KB
testcase_13 AC 272 ms
11,776 KB
testcase_14 AC 272 ms
11,776 KB
testcase_15 AC 269 ms
11,904 KB
testcase_16 AC 271 ms
11,648 KB
testcase_17 AC 270 ms
11,776 KB
testcase_18 AC 279 ms
11,776 KB
testcase_19 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[1,3,4,5,7,8]
p=[]
for i in range(n):
    k=int(input())
    if k in l:
        p.append(1)
    else:
        p.append(2)

for x in p:
    print(x)
0