結果

問題 No.2016 Countdown Divisors
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-22 21:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 1,267 ms
コンパイル使用メモリ 86,784 KB
実行使用メモリ 78,032 KB
最終ジャッジ日時 2023-09-17 09:34:35
合計ジャッジ時間 7,147 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,216 KB
testcase_01 AC 282 ms
77,300 KB
testcase_02 AC 282 ms
77,316 KB
testcase_03 AC 266 ms
77,316 KB
testcase_04 AC 249 ms
77,288 KB
testcase_05 AC 243 ms
77,240 KB
testcase_06 AC 156 ms
77,336 KB
testcase_07 AC 154 ms
77,140 KB
testcase_08 AC 280 ms
77,360 KB
testcase_09 AC 286 ms
77,352 KB
testcase_10 AC 285 ms
77,204 KB
testcase_11 AC 285 ms
77,360 KB
testcase_12 AC 287 ms
77,284 KB
testcase_13 AC 304 ms
77,580 KB
testcase_14 AC 281 ms
77,540 KB
testcase_15 AC 287 ms
77,648 KB
testcase_16 AC 290 ms
77,588 KB
testcase_17 AC 293 ms
78,032 KB
testcase_18 AC 293 ms
77,588 KB
testcase_19 AC 71 ms
71,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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