結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー ID 21712ID 21712
提出日時 2024-12-12 13:08:07
言語 Go
(1.22.1)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 11,399 ms
コンパイル使用メモリ 247,092 KB
実行使用メモリ 395,396 KB
最終ジャッジ日時 2024-12-12 13:08:39
合計ジャッジ時間 29,457 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 144 ms
98,112 KB
testcase_04 AC 292 ms
225,232 KB
testcase_05 AC 211 ms
145,268 KB
testcase_06 AC 261 ms
190,368 KB
testcase_07 AC 256 ms
184,220 KB
testcase_08 AC 161 ms
118,612 KB
testcase_09 AC 41 ms
16,096 KB
testcase_10 AC 247 ms
180,124 KB
testcase_11 AC 136 ms
108,360 KB
testcase_12 AC 148 ms
94,016 KB
testcase_13 AC 37 ms
18,168 KB
testcase_14 AC 362 ms
247,776 KB
testcase_15 AC 473 ms
290,840 KB
testcase_16 AC 129 ms
87,848 KB
testcase_17 AC 86 ms
53,004 KB
testcase_18 AC 23 ms
13,920 KB
testcase_19 AC 37 ms
24,236 KB
testcase_20 AC 345 ms
239,576 KB
testcase_21 AC 69 ms
46,848 KB
testcase_22 AC 31 ms
18,092 KB
testcase_23 AC 624 ms
395,396 KB
testcase_24 AC 536 ms
395,392 KB
testcase_25 AC 542 ms
395,396 KB
testcase_26 AC 563 ms
395,392 KB
testcase_27 AC 546 ms
395,392 KB
testcase_28 AC 574 ms
395,396 KB
testcase_29 AC 550 ms
395,392 KB
testcase_30 AC 576 ms
395,392 KB
testcase_31 AC 546 ms
395,396 KB
testcase_32 AC 565 ms
395,392 KB
testcase_33 AC 522 ms
395,388 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 14 ms
6,816 KB
testcase_37 AC 14 ms
6,816 KB
testcase_38 AC 640 ms
393,344 KB
testcase_39 AC 608 ms
393,348 KB
testcase_40 AC 639 ms
393,348 KB
testcase_41 AC 605 ms
393,344 KB
testcase_42 AC 632 ms
387,192 KB
testcase_43 AC 566 ms
370,792 KB
testcase_44 AC 602 ms
374,888 KB
testcase_45 AC 611 ms
387,188 KB
testcase_46 AC 584 ms
378,992 KB
testcase_47 AC 578 ms
383,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n,m int
	Scan(&n,&m)
	a:=make([]int,n*m)
	b:=make([]int,n*m)
	for i:=range a[:n] {
		Scan(&a[i])
		for k:=i+n;k<len(a);k+=n {
			a[k]=a[i] 
		}
	}
	for i:=range b[:m] {
		Scan(&b[i])
		for k:=i+m;k<len(b);k+=m {
			b[k]=b[i]
		}
	}
	for i, v:=range a {
		if v==b[i] {
			Println(i+1)
			return
		}
	}
	Println(-1)
}
0