結果

問題 No.2016 Countdown Divisors
ユーザー 👑 rin204rin204
提出日時 2022-07-22 21:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 87,432 KB
実行使用メモリ 78,288 KB
最終ジャッジ日時 2023-09-17 09:04:08
合計ジャッジ時間 7,136 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,208 KB
testcase_01 AC 300 ms
77,368 KB
testcase_02 AC 299 ms
77,524 KB
testcase_03 AC 283 ms
77,456 KB
testcase_04 AC 261 ms
77,384 KB
testcase_05 AC 252 ms
77,340 KB
testcase_06 AC 163 ms
77,372 KB
testcase_07 AC 162 ms
77,408 KB
testcase_08 AC 302 ms
77,392 KB
testcase_09 AC 304 ms
77,376 KB
testcase_10 AC 300 ms
77,104 KB
testcase_11 AC 301 ms
77,400 KB
testcase_12 AC 297 ms
77,392 KB
testcase_13 AC 315 ms
78,176 KB
testcase_14 AC 309 ms
78,216 KB
testcase_15 AC 308 ms
77,840 KB
testcase_16 AC 321 ms
78,288 KB
testcase_17 AC 312 ms
77,920 KB
testcase_18 AC 308 ms
77,896 KB
testcase_19 AC 75 ms
71,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n):
    if n in [1, 3, 4, 5, 7, 8]:
        print(1)
    else:
        print(2)

for _ in range(int(input())):
    solve(int(input()))
0