結果

問題 No.2016 Countdown Divisors
ユーザー Akijin_007Akijin_007
提出日時 2022-07-22 21:48:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-04 06:01:58
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 120 ms
77,324 KB
testcase_02 AC 122 ms
77,824 KB
testcase_03 AC 118 ms
77,696 KB
testcase_04 AC 113 ms
77,568 KB
testcase_05 AC 111 ms
77,600 KB
testcase_06 AC 92 ms
76,928 KB
testcase_07 AC 89 ms
76,764 KB
testcase_08 AC 119 ms
77,312 KB
testcase_09 AC 120 ms
77,468 KB
testcase_10 AC 117 ms
77,448 KB
testcase_11 AC 114 ms
77,312 KB
testcase_12 AC 120 ms
77,440 KB
testcase_13 AC 122 ms
77,732 KB
testcase_14 AC 117 ms
77,696 KB
testcase_15 AC 118 ms
77,400 KB
testcase_16 AC 122 ms
77,364 KB
testcase_17 AC 117 ms
77,412 KB
testcase_18 AC 115 ms
77,440 KB
testcase_19 AC 40 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

from collections import Counter


def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

T = int(input())
x = [0] * T

for i in range(T):
    x[i] = int(input())

a = [1, 3, 4, 5, 7, 8]

for i in range(T):
    if x[i] in a:
        print("1")
    else:
        print("2")
0