結果

問題 No.2016 Countdown Divisors
ユーザー ShirotsumeShirotsume
提出日時 2022-07-22 21:58:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 76,776 KB
最終ジャッジ日時 2024-07-04 06:17:45
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,676 KB
testcase_01 AC 70 ms
76,248 KB
testcase_02 AC 72 ms
75,684 KB
testcase_03 AC 74 ms
76,096 KB
testcase_04 AC 74 ms
76,008 KB
testcase_05 AC 75 ms
76,076 KB
testcase_06 AC 60 ms
76,164 KB
testcase_07 AC 61 ms
76,152 KB
testcase_08 AC 69 ms
76,196 KB
testcase_09 AC 73 ms
76,144 KB
testcase_10 AC 72 ms
76,032 KB
testcase_11 AC 71 ms
75,996 KB
testcase_12 AC 70 ms
75,944 KB
testcase_13 AC 91 ms
76,136 KB
testcase_14 AC 87 ms
76,776 KB
testcase_15 AC 88 ms
76,084 KB
testcase_16 AC 90 ms
76,176 KB
testcase_17 AC 89 ms
76,336 KB
testcase_18 AC 89 ms
76,532 KB
testcase_19 AC 34 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353

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