結果

問題 No.2016 Countdown Divisors
ユーザー nononnonon
提出日時 2024-09-12 13:55:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 76,984 KB
最終ジャッジ日時 2024-09-12 13:56:02
合計ジャッジ時間 7,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,944 KB
testcase_01 AC 264 ms
76,516 KB
testcase_02 AC 257 ms
76,580 KB
testcase_03 AC 243 ms
76,320 KB
testcase_04 AC 247 ms
76,364 KB
testcase_05 AC 219 ms
76,464 KB
testcase_06 AC 127 ms
76,292 KB
testcase_07 AC 125 ms
76,488 KB
testcase_08 AC 259 ms
76,216 KB
testcase_09 AC 257 ms
76,152 KB
testcase_10 AC 259 ms
76,284 KB
testcase_11 AC 262 ms
76,244 KB
testcase_12 AC 266 ms
76,048 KB
testcase_13 AC 272 ms
76,600 KB
testcase_14 AC 269 ms
76,332 KB
testcase_15 AC 256 ms
76,484 KB
testcase_16 AC 270 ms
76,984 KB
testcase_17 AC 260 ms
76,616 KB
testcase_18 AC 297 ms
76,592 KB
testcase_19 AC 37 ms
53,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    N=int(input())
    print(1 if N in [1,3,4,5,7,8] else 2)
0