結果

問題 No.2016 Countdown Divisors
ユーザー mink1618033mink1618033
提出日時 2022-05-03 22:16:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 78,132 KB
最終ジャッジ日時 2023-09-15 16:36:16
合計ジャッジ時間 8,511 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,320 KB
testcase_01 AC 295 ms
77,752 KB
testcase_02 AC 292 ms
77,356 KB
testcase_03 AC 273 ms
77,616 KB
testcase_04 AC 256 ms
77,660 KB
testcase_05 AC 247 ms
77,528 KB
testcase_06 AC 157 ms
77,668 KB
testcase_07 AC 157 ms
77,672 KB
testcase_08 AC 289 ms
77,360 KB
testcase_09 AC 293 ms
77,664 KB
testcase_10 AC 292 ms
77,624 KB
testcase_11 AC 295 ms
77,704 KB
testcase_12 AC 298 ms
77,404 KB
testcase_13 AC 302 ms
77,940 KB
testcase_14 AC 294 ms
77,684 KB
testcase_15 AC 296 ms
78,064 KB
testcase_16 AC 306 ms
77,972 KB
testcase_17 AC 295 ms
78,132 KB
testcase_18 AC 300 ms
77,768 KB
testcase_19 AC 70 ms
71,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    if n in (1,3,4,5,7,8):
        print(1)
    else:
        print(2)
0