結果

問題 No.2680 研究室配属
ユーザー ID 21712ID 21712
提出日時 2024-11-10 22:30:27
言語 Go
(1.22.1)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 10,614 ms
コンパイル使用メモリ 222,816 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-11-10 22:30:45
合計ジャッジ時間 14,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 9 ms
5,248 KB
testcase_06 AC 12 ms
5,248 KB
testcase_07 AC 11 ms
5,248 KB
testcase_08 AC 10 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 47 ms
5,248 KB
testcase_11 AC 45 ms
5,248 KB
testcase_12 AC 63 ms
5,248 KB
testcase_13 AC 48 ms
5,248 KB
testcase_14 AC 69 ms
5,248 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 180 ms
6,656 KB
testcase_17 AC 29 ms
5,248 KB
testcase_18 AC 95 ms
5,248 KB
testcase_19 AC 211 ms
8,064 KB
testcase_20 AC 164 ms
7,296 KB
testcase_21 AC 18 ms
5,248 KB
testcase_22 AC 122 ms
6,016 KB
testcase_23 AC 337 ms
11,520 KB
testcase_24 AC 361 ms
11,392 KB
testcase_25 AC 340 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	a:=make([]int,m)
	for i:=range a {
		Fscan(rd,&a[i])
	}
	t:=make([][]int,n)
	for i:=range t {
		t[i]=make([]int,m)
		for k:=range t[i] {
			Fscan(rd,&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