結果
問題 |
No.2016 Countdown Divisors
|
ユーザー |
![]() |
提出日時 | 2022-07-22 21:35:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 116 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-04 05:36:23 |
合計ジャッジ時間 | 1,509 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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)