結果

問題 No.2016 Countdown Divisors
ユーザー ああいいああいい
提出日時 2022-07-24 07:27:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-05 23:00:08
合計ジャッジ時間 6,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 269 ms
75,776 KB
testcase_02 AC 264 ms
75,904 KB
testcase_03 AC 255 ms
76,032 KB
testcase_04 AC 232 ms
75,904 KB
testcase_05 AC 224 ms
75,776 KB
testcase_06 AC 133 ms
75,904 KB
testcase_07 AC 134 ms
76,288 KB
testcase_08 AC 274 ms
76,160 KB
testcase_09 AC 272 ms
75,904 KB
testcase_10 AC 264 ms
75,904 KB
testcase_11 AC 273 ms
76,160 KB
testcase_12 AC 268 ms
75,904 KB
testcase_13 AC 269 ms
76,032 KB
testcase_14 AC 257 ms
75,904 KB
testcase_15 AC 258 ms
76,160 KB
testcase_16 AC 270 ms
76,032 KB
testcase_17 AC 260 ms
76,288 KB
testcase_18 AC 265 ms
75,904 KB
testcase_19 AC 39 ms
51,584 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