結果
| 問題 | No.2016 Countdown Divisors |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2022-07-22 21:35:01 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 116 bytes |
| 記録 | |
| コンパイル時間 | 538 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-03-25 13:51:09 |
| 合計ジャッジ時間 | 6,399 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 1 |
| other | RE * 19 |
ソースコード
T=int(input())
for tests in range(T):
N=int(input())
if N in X:
print(1)
else:
print(2)
titia