結果

問題 No.2016 Countdown Divisors
ユーザー souta-1326souta-1326
提出日時 2022-07-22 21:37:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 88 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 87,340 KB
実行使用メモリ 78,092 KB
最終ジャッジ日時 2023-09-17 09:11:48
合計ジャッジ時間 6,870 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,344 KB
testcase_01 AC 304 ms
77,224 KB
testcase_02 AC 298 ms
77,272 KB
testcase_03 AC 280 ms
77,292 KB
testcase_04 AC 259 ms
77,284 KB
testcase_05 AC 252 ms
77,144 KB
testcase_06 AC 158 ms
77,216 KB
testcase_07 AC 160 ms
77,268 KB
testcase_08 AC 298 ms
76,920 KB
testcase_09 AC 295 ms
77,144 KB
testcase_10 AC 299 ms
77,052 KB
testcase_11 AC 299 ms
77,460 KB
testcase_12 AC 297 ms
77,268 KB
testcase_13 AC 303 ms
77,548 KB
testcase_14 AC 293 ms
77,556 KB
testcase_15 AC 293 ms
77,292 KB
testcase_16 AC 310 ms
78,092 KB
testcase_17 AC 300 ms
77,888 KB
testcase_18 AC 302 ms
77,764 KB
testcase_19 AC 74 ms
71,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  print(1 if input() in ["1","3","4","5","7","8"] else 2) 
0