結果

問題 No.2016 Countdown Divisors
ユーザー ikomaikoma
提出日時 2022-07-22 22:56:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-07-04 07:28:25
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,564 KB
testcase_01 AC 82 ms
76,428 KB
testcase_02 AC 81 ms
76,416 KB
testcase_03 AC 78 ms
76,264 KB
testcase_04 AC 75 ms
76,244 KB
testcase_05 AC 74 ms
75,872 KB
testcase_06 AC 63 ms
76,348 KB
testcase_07 AC 61 ms
75,992 KB
testcase_08 AC 80 ms
76,176 KB
testcase_09 AC 80 ms
76,252 KB
testcase_10 AC 83 ms
76,332 KB
testcase_11 AC 84 ms
76,332 KB
testcase_12 AC 79 ms
76,060 KB
testcase_13 AC 94 ms
76,456 KB
testcase_14 AC 93 ms
76,648 KB
testcase_15 AC 94 ms
76,504 KB
testcase_16 AC 97 ms
76,880 KB
testcase_17 AC 95 ms
76,588 KB
testcase_18 AC 97 ms
76,228 KB
testcase_19 AC 37 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

T=int(input())
for _ in range(T):
    N=int(input())
    print(solve(N))
0