結果

問題 No.2016 Countdown Divisors
ユーザー googol_S0googol_S0
提出日時 2022-07-22 21:23:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 86,948 KB
実行使用メモリ 77,776 KB
最終ジャッジ日時 2023-09-17 08:42:35
合計ジャッジ時間 6,964 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,460 KB
testcase_01 AC 283 ms
77,512 KB
testcase_02 AC 286 ms
77,488 KB
testcase_03 AC 268 ms
77,620 KB
testcase_04 AC 245 ms
77,496 KB
testcase_05 AC 245 ms
77,564 KB
testcase_06 AC 154 ms
77,608 KB
testcase_07 AC 153 ms
77,320 KB
testcase_08 AC 283 ms
77,572 KB
testcase_09 AC 280 ms
77,544 KB
testcase_10 AC 285 ms
77,232 KB
testcase_11 AC 285 ms
77,636 KB
testcase_12 AC 284 ms
77,492 KB
testcase_13 AC 282 ms
77,632 KB
testcase_14 AC 272 ms
77,684 KB
testcase_15 AC 268 ms
77,660 KB
testcase_16 AC 284 ms
77,340 KB
testcase_17 AC 274 ms
77,776 KB
testcase_18 AC 279 ms
77,632 KB
testcase_19 AC 72 ms
71,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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