結果

問題 No.2016 Countdown Divisors
ユーザー FromBooskaFromBooska
提出日時 2023-03-16 20:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 76,332 KB
最終ジャッジ日時 2023-10-18 13:10:27
合計ジャッジ時間 7,384 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,384 KB
testcase_01 AC 266 ms
75,904 KB
testcase_02 AC 258 ms
75,916 KB
testcase_03 AC 241 ms
75,916 KB
testcase_04 AC 218 ms
75,912 KB
testcase_05 AC 216 ms
75,908 KB
testcase_06 AC 124 ms
75,916 KB
testcase_07 AC 126 ms
75,908 KB
testcase_08 AC 258 ms
75,912 KB
testcase_09 AC 258 ms
75,908 KB
testcase_10 AC 258 ms
75,916 KB
testcase_11 AC 254 ms
75,916 KB
testcase_12 AC 255 ms
75,912 KB
testcase_13 AC 265 ms
76,200 KB
testcase_14 AC 258 ms
76,196 KB
testcase_15 AC 253 ms
76,204 KB
testcase_16 AC 266 ms
76,308 KB
testcase_17 AC 258 ms
76,208 KB
testcase_18 AC 262 ms
76,332 KB
testcase_19 AC 36 ms
53,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 実験すると以下となった
T = int(input())
for t in range(T):
    N = int(input())
    if N in [1, 3, 4, 5, 7, 8]:
        ans = 1
    else:
        ans = 2
    print(ans)
0