結果
問題 | No.1130 Grid Numbers |
ユーザー | bluemegane |
提出日時 | 2021-04-18 10:07:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 797 bytes |
コンパイル時間 | 940 ms |
コンパイル使用メモリ | 111,196 KB |
実行使用メモリ | 26,296 KB |
最終ジャッジ日時 | 2024-07-04 04:25:03 |
合計ジャッジ時間 | 1,901 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,180 KB |
testcase_01 | AC | 29 ms
24,184 KB |
testcase_02 | AC | 29 ms
24,472 KB |
testcase_03 | AC | 27 ms
23,984 KB |
testcase_04 | AC | 29 ms
24,052 KB |
testcase_05 | AC | 28 ms
24,132 KB |
testcase_06 | AC | 29 ms
26,296 KB |
testcase_07 | AC | 29 ms
24,384 KB |
testcase_08 | AC | 29 ms
26,184 KB |
testcase_09 | AC | 28 ms
24,308 KB |
testcase_10 | AC | 29 ms
24,256 KB |
testcase_11 | AC | 30 ms
24,368 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Collections.Generic; using System; public class Hello { public static int h, w; static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); h = int.Parse(line[0]); w = int.Parse(line[1]); var t = new List<int>(); for (int i = 0; i < h; i++) { line = Console.ReadLine().Trim().Split(' '); for (int j = 0; j < w; j++) t.Add(int.Parse(line[j])); } getAns(t); } static void getAns(List<int> t) { t.Sort(); var p = 0; var res = new int[w]; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) res[j] = t[j + p]; Console.WriteLine(string.Join(" ", res)); p += w; } } }