結果

問題 No.2016 Countdown Divisors
ユーザー ああいいああいい
提出日時 2022-07-24 07:27:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 77,520 KB
最終ジャッジ日時 2023-09-20 02:40:25
合計ジャッジ時間 8,316 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,448 KB
testcase_01 AC 283 ms
77,488 KB
testcase_02 AC 285 ms
77,516 KB
testcase_03 AC 272 ms
77,468 KB
testcase_04 AC 247 ms
77,520 KB
testcase_05 AC 247 ms
77,516 KB
testcase_06 AC 155 ms
77,188 KB
testcase_07 AC 155 ms
77,256 KB
testcase_08 AC 281 ms
77,492 KB
testcase_09 AC 291 ms
77,248 KB
testcase_10 AC 285 ms
77,184 KB
testcase_11 AC 288 ms
77,376 KB
testcase_12 AC 287 ms
77,232 KB
testcase_13 AC 277 ms
77,360 KB
testcase_14 AC 272 ms
77,504 KB
testcase_15 AC 270 ms
77,520 KB
testcase_16 AC 281 ms
77,356 KB
testcase_17 AC 275 ms
77,352 KB
testcase_18 AC 280 ms
77,388 KB
testcase_19 AC 72 ms
71,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = [0,1,2,1,1,1,2,1,1,2,2,2,2,2,]
T = int(input())
for _ in range(T):
    N = int(input())
    if N >= 10:
        print(2)
    else:
        print(l[N])
0