結果

問題 No.2016 Countdown Divisors
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-02 14:59:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 76,688 KB
最終ジャッジ日時 2024-09-02 14:59:57
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,244 KB
testcase_01 AC 257 ms
76,648 KB
testcase_02 AC 268 ms
76,464 KB
testcase_03 AC 246 ms
76,152 KB
testcase_04 AC 229 ms
76,080 KB
testcase_05 AC 215 ms
76,364 KB
testcase_06 AC 127 ms
76,208 KB
testcase_07 AC 126 ms
76,304 KB
testcase_08 AC 287 ms
76,340 KB
testcase_09 AC 258 ms
76,392 KB
testcase_10 AC 252 ms
76,400 KB
testcase_11 AC 252 ms
76,444 KB
testcase_12 AC 262 ms
76,092 KB
testcase_13 AC 266 ms
76,460 KB
testcase_14 AC 263 ms
76,344 KB
testcase_15 AC 257 ms
76,688 KB
testcase_16 AC 272 ms
76,348 KB
testcase_17 AC 288 ms
76,620 KB
testcase_18 AC 261 ms
76,628 KB
testcase_19 AC 37 ms
52,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
	n=int(input())
	print([2,1][n in [1,3,4,5,7,8]])
0