結果

問題 No.2016 Countdown Divisors
ユーザー tamatotamato
提出日時 2022-07-22 21:28:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 76,404 KB
最終ジャッジ日時 2024-07-04 05:25:16
合計ジャッジ時間 2,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 AC 80 ms
76,084 KB
testcase_02 AC 79 ms
75,848 KB
testcase_03 AC 77 ms
76,380 KB
testcase_04 AC 75 ms
76,404 KB
testcase_05 AC 73 ms
75,696 KB
testcase_06 AC 61 ms
76,368 KB
testcase_07 AC 62 ms
75,988 KB
testcase_08 AC 80 ms
75,984 KB
testcase_09 AC 79 ms
75,984 KB
testcase_10 AC 77 ms
75,696 KB
testcase_11 AC 77 ms
75,712 KB
testcase_12 AC 83 ms
76,024 KB
testcase_13 AC 79 ms
76,136 KB
testcase_14 AC 78 ms
75,880 KB
testcase_15 AC 76 ms
75,860 KB
testcase_16 AC 83 ms
75,824 KB
testcase_17 AC 80 ms
76,144 KB
testcase_18 AC 81 ms
75,824 KB
testcase_19 AC 36 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline
    
    ans = [0, 1, 2, 1, 1, 1, 2, 1, 1, 2]
    for _ in range(int(input())):
        N = int(input())
        if N >= 10:
            print(2)
        else:
            print(ans[N])


if __name__ == '__main__':
    main()
0