結果
問題 | No.30 たこやき工場 |
ユーザー | 6soukiti29 |
提出日時 | 2017-07-27 11:18:56 |
言語 | Nim (2.0.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 894 bytes |
コンパイル時間 | 939 ms |
コンパイル使用メモリ | 66,460 KB |
最終ジャッジ日時 | 2024-06-01 03:01:11 |
合計ジャッジ時間 | 1,325 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(22, 35) Error: type mismatch: got 'seq[int]' for 'map(split(readLine(stdin), {' ', '\t', '\v', '\r', '\n', '\f'}, -1), parseInt)' but expected 'tuple'
ソースコード
import sequtils,strutils,deques type item = tuple[id : int, oya : seq[int], ko : seq[int]] zairyou = tuple[oya : int, num : int] var N = stdin.readline.parseInt M = stdin.readline.parseInt P,Q,R : int cnt : array[101,int] flag : array[101,bool] Items = newSeq[item](N + 1) hyou : array[101,array[101,int]] p : item j : int for i,t in Items: Items[i] = (i,newSeq[int](0),newSeq[int](0)) cnt[N] = 1 for n in 0..<M: (P,Q,R) = stdin.readline.split.map(parseInt) flag[R] = true Items[P].oya.add(R) Items[R].ko.add(P) hyou[P][R] = Q var q = initDeque[int](4) q.addLast(N) while q.len > 0: j = q.popFirst p = Items[j] if cnt[p.id] == 0 or flag[p.id] == false: continue for k in p.ko: cnt[k] += hyou[k][p.id] * cnt[p.id] q.addLast(k) cnt[p.id] = 0 for i in 1..<N: echo cnt[i]