結果
| 問題 | No.1722 [Cherry 3rd Tune C] In my way |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-29 21:28:20 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 38 ms / 2,000 ms |
| + 830µs | |
| コード長 | 210 bytes |
| 記録 | |
| コンパイル時間 | 75 ms |
| コンパイル使用メモリ | 80,896 KB |
| 実行使用メモリ | 65,664 KB |
| 最終ジャッジ日時 | 2026-09-11 12:27:44 |
| 合計ジャッジ時間 | 2,466 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
import bisect
N,M = map(int,input().split())
X = list(map(int,input().split()))
Y = sorted(list(map(int,input().split())))
for x in X:
r = bisect.bisect(Y,x)
print(Y[r]-x if r<len(Y) else 'Infinity')