結果

問題 No.2016 Countdown Divisors
ユーザー FromBooskaFromBooska
提出日時 2023-03-16 20:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 76,580 KB
最終ジャッジ日時 2024-09-18 09:29:25
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,432 KB
testcase_01 AC 227 ms
75,984 KB
testcase_02 AC 234 ms
75,656 KB
testcase_03 AC 215 ms
76,176 KB
testcase_04 AC 222 ms
76,200 KB
testcase_05 AC 221 ms
75,932 KB
testcase_06 AC 124 ms
76,064 KB
testcase_07 AC 112 ms
76,188 KB
testcase_08 AC 238 ms
75,832 KB
testcase_09 AC 250 ms
75,712 KB
testcase_10 AC 239 ms
75,936 KB
testcase_11 AC 230 ms
75,732 KB
testcase_12 AC 238 ms
75,776 KB
testcase_13 AC 255 ms
76,580 KB
testcase_14 AC 240 ms
76,116 KB
testcase_15 AC 235 ms
76,560 KB
testcase_16 AC 245 ms
76,468 KB
testcase_17 AC 232 ms
76,176 KB
testcase_18 AC 240 ms
76,396 KB
testcase_19 AC 33 ms
52,356 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