結果

問題 No.2680 研究室配属
ユーザー ID 21712ID 21712
提出日時 2024-11-10 22:27:59
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 454 bytes
コンパイル時間 13,406 ms
コンパイル使用メモリ 240,312 KB
実行使用メモリ 13,772 KB
最終ジャッジ日時 2024-11-10 22:28:29
合計ジャッジ時間 24,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,772 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 8 ms
5,248 KB
testcase_04 AC 10 ms
5,248 KB
testcase_05 AC 69 ms
5,248 KB
testcase_06 AC 96 ms
5,248 KB
testcase_07 AC 90 ms
5,248 KB
testcase_08 AC 85 ms
5,248 KB
testcase_09 AC 37 ms
5,248 KB
testcase_10 AC 518 ms
6,144 KB
testcase_11 AC 487 ms
6,272 KB
testcase_12 AC 699 ms
6,272 KB
testcase_13 AC 487 ms
6,272 KB
testcase_14 AC 752 ms
6,272 KB
testcase_15 AC 87 ms
5,248 KB
testcase_16 AC 1,788 ms
9,472 KB
testcase_17 AC 258 ms
6,016 KB
testcase_18 AC 1,082 ms
6,912 KB
testcase_19 TLE -
testcase_20 AC 1,917 ms
10,252 KB
testcase_21 AC 140 ms
6,816 KB
testcase_22 AC 1,352 ms
8,092 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n,m int
	Scan(&n,&m)
	a:=make([]int,m)
	for i:=range a {
		Scan(&a[i])
	}
	t:=make([][]int,n)
	for i:=range t {
		t[i]=make([]int,m)
		for k:=range t[i] {
			Scan(&t[i][k])
		}
	}
	p:=make([]int,n)
	for i:=0;i<m;i++ {
		for k,s:=range t {
			c:=s[i]
			if a[c]==0|| 0<p[k] {
				continue
			}
			p[k]=c+1
			a[c]--
		}
	}
	
	for i,c:=range p {
		if i>0 {
			Print(" ")
		}
		Print(c-1)
	}
	Println()
	
	
}
0