結果

問題 No.2016 Countdown Divisors
ユーザー pitPpitP
提出日時 2022-07-22 21:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 87,024 KB
実行使用メモリ 77,784 KB
最終ジャッジ日時 2023-09-17 09:32:39
合計ジャッジ時間 6,722 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,180 KB
testcase_01 AC 302 ms
77,124 KB
testcase_02 AC 296 ms
77,124 KB
testcase_03 AC 281 ms
77,300 KB
testcase_04 AC 260 ms
77,304 KB
testcase_05 AC 254 ms
77,108 KB
testcase_06 AC 160 ms
77,360 KB
testcase_07 AC 158 ms
77,456 KB
testcase_08 AC 297 ms
77,156 KB
testcase_09 AC 298 ms
76,964 KB
testcase_10 AC 293 ms
77,176 KB
testcase_11 AC 298 ms
77,076 KB
testcase_12 AC 296 ms
76,960 KB
testcase_13 AC 301 ms
77,468 KB
testcase_14 AC 297 ms
77,392 KB
testcase_15 AC 293 ms
77,460 KB
testcase_16 AC 306 ms
77,332 KB
testcase_17 AC 302 ms
77,784 KB
testcase_18 AC 302 ms
77,720 KB
testcase_19 AC 74 ms
71,048 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