結果

問題 No.2016 Countdown Divisors
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-30 18:24:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 77,912 KB
最終ジャッジ日時 2023-09-27 20:05:21
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,156 KB
testcase_01 AC 260 ms
77,268 KB
testcase_02 AC 265 ms
77,388 KB
testcase_03 AC 249 ms
77,328 KB
testcase_04 AC 225 ms
77,316 KB
testcase_05 AC 219 ms
77,320 KB
testcase_06 AC 139 ms
77,464 KB
testcase_07 AC 143 ms
77,328 KB
testcase_08 AC 269 ms
77,192 KB
testcase_09 AC 272 ms
77,208 KB
testcase_10 AC 269 ms
77,248 KB
testcase_11 AC 260 ms
77,096 KB
testcase_12 AC 263 ms
77,300 KB
testcase_13 AC 267 ms
77,644 KB
testcase_14 AC 268 ms
77,756 KB
testcase_15 AC 271 ms
77,644 KB
testcase_16 AC 276 ms
77,912 KB
testcase_17 AC 267 ms
77,792 KB
testcase_18 AC 274 ms
77,752 KB
testcase_19 AC 64 ms
71,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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