結果
問題 | No.2016 Countdown Divisors |
ユーザー |
![]() |
提出日時 | 2022-07-22 22:56:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 97 ms / 2,000 ms |
コード長 | 174 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 82,016 KB |
実行使用メモリ | 76,880 KB |
最終ジャッジ日時 | 2024-07-04 07:28:25 |
合計ジャッジ時間 | 2,841 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 19 |
ソースコード
import sys input = sys.stdin.readline def solve(n): if n in [1,3,4,5,7,8]:return 1 return 2 T=int(input()) for _ in range(T): N=int(input()) print(solve(N))