結果

問題 No.2016 Countdown Divisors
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-07-22 21:36:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,328 KB
最終ジャッジ日時 2024-07-04 05:39:05
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,336 KB
testcase_01 AC 84 ms
75,996 KB
testcase_02 AC 85 ms
76,128 KB
testcase_03 AC 82 ms
76,044 KB
testcase_04 AC 81 ms
75,800 KB
testcase_05 AC 76 ms
76,000 KB
testcase_06 AC 64 ms
75,996 KB
testcase_07 AC 62 ms
76,208 KB
testcase_08 AC 82 ms
76,328 KB
testcase_09 AC 84 ms
76,100 KB
testcase_10 AC 84 ms
76,180 KB
testcase_11 AC 83 ms
76,120 KB
testcase_12 AC 83 ms
75,924 KB
testcase_13 AC 80 ms
76,212 KB
testcase_14 AC 81 ms
76,176 KB
testcase_15 AC 78 ms
76,000 KB
testcase_16 AC 84 ms
76,068 KB
testcase_17 AC 85 ms
75,996 KB
testcase_18 AC 85 ms
76,096 KB
testcase_19 AC 36 ms
52,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

1 or 2 かな

7 -> 5 -> 3 -> 1
9 -> 6 -> 2
4 -> 1

1 -> 1
2 -> 2
3 -> 1
4 -> 1
5 -> 2
6 -> 1
7 -> 2
8 -> 

"""
"""
for i in range(1,100):

    x = i
    while True:

        now = 0
        for j in range(1,x+1):
            if x % j == 0:
                now += 1

        x -= now
        if x == 0:
            print (i,now)
            break
"""

import sys
from sys import stdin

TT = int(stdin.readline())

for loop in range(TT):

    N = int(stdin.readline())

    ans = [None,1,2,1,1,1,2,1,1,2]

    if N < len(ans):
        print (ans[N])
    else:
        print (2)

    
0