結果
| 問題 | No.2016 Countdown Divisors |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-17 19:33:04 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 396 ms / 2,000 ms |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 827 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,616 KB |
| 最終ジャッジ日時 | 2026-07-09 17:11:26 |
| 合計ジャッジ時間 | 9,149 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 19 |
ソースコード
nums = [1, 3, 4, 5, 7, 8]
t = int(input())
for i in range(t):
n = int(input())
if n in nums:
print(1)
else:
print(2)