結果

問題 No.893 お客様を誘導せよ
ユーザー varrhovarrho
提出日時 2019-09-28 02:52:44
言語 Nim
(2.0.2)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 4,122 ms
コンパイル使用メモリ 67,120 KB
実行使用メモリ 87,676 KB
最終ジャッジ日時 2024-09-25 07:49:24
合計ジャッジ時間 5,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 33 ms
23,604 KB
testcase_03 AC 106 ms
78,812 KB
testcase_04 AC 101 ms
78,036 KB
testcase_05 AC 92 ms
70,060 KB
testcase_06 AC 67 ms
50,020 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 125 ms
87,676 KB
testcase_09 AC 100 ms
83,960 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 97 ms
83,680 KB
testcase_12 AC 101 ms
84,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import algorithm, sequtils, strutils
let
  n: int = stdin.readline.parseInt
  a: seq[seq[int]] = mapIt(0..<n, stdin.readline.split.map(parseInt))
var
  b: seq[seq[int]] = newSeqwith(n, newSeq[int](10000))
  ans: seq[int]
for i in 0..<n:
  for j in 1..<a[i].len:
    b[i][j - 1] = a[i][j]
for i in 0..<10000:
  var tmp: seq[int]
  for j in 0..<n:
    if b[j][i] != 0:
      tmp.add(b[j][i])
  tmp.sort()
  ans.add(tmp)
for i in ans:
  stdout.write(i)
  stdout.write(' ')
echo ""
0