結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー ID 21712ID 21712
提出日時 2024-12-10 21:55:45
言語 Go
(1.22.1)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 11,664 ms
コンパイル使用メモリ 218,584 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-10 21:55:58
合計ジャッジ時間 12,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 8 ms
5,248 KB
testcase_02 AC 19 ms
5,248 KB
testcase_03 AC 18 ms
5,248 KB
testcase_04 AC 14 ms
5,248 KB
testcase_05 AC 9 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 23 ms
5,248 KB
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 24 ms
5,248 KB
testcase_12 AC 24 ms
5,248 KB
testcase_13 AC 24 ms
5,248 KB
testcase_14 AC 24 ms
5,248 KB
testcase_15 AC 24 ms
5,248 KB
testcase_16 AC 24 ms
5,248 KB
testcase_17 AC 25 ms
5,248 KB
testcase_18 AC 25 ms
5,248 KB
testcase_19 AC 24 ms
5,248 KB
testcase_20 AC 25 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "slices"

func main() {
	var n,m int
	Scan(&n,&m)
	x:=make([]int,n)
	y:=make([]int,m)
	for i:=range x {
		Scan(&x[i])
	}
	for i:=range y {
		Scan(&y[i])
	}
	Sort(y)
	for _,v:=range x {
		z,ok:=BinarySearch(y,v)
		if !ok&&z>=m {
			Println("Infinity")
		} else {
			Println(y[z]-v)
		}
	}
}
0