結果
| 問題 | No.3498 Modulo Equation |
| コンテスト | |
| ユーザー |
aw-tajia
|
| 提出日時 | 2026-04-18 14:43:05 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 130 bytes |
| 記録 | |
| コンパイル時間 | 536 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 20,704 KB |
| 最終ジャッジ日時 | 2026-04-18 14:43:20 |
| 合計ジャッジ時間 | 9,279 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 30 |
ソースコード
import sys args = sys.argv A = int(args[1]) B = int(args[2]) for x in range(1, 100000): if x % A == B % x: print(x) break
aw-tajia