結果

問題 No.1475 時計の歯車Easy
ユーザー Minami53Minami53
提出日時 2022-05-12 00:43:41
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,110 bytes
コンパイル時間 11,803 ms
コンパイル使用メモリ 167,628 KB
実行使用メモリ 189,464 KB
最終ジャッジ日時 2024-07-19 10:52:47
合計ジャッジ時間 15,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 55 ms
29,568 KB
testcase_02 AC 53 ms
29,312 KB
testcase_03 AC 52 ms
29,436 KB
testcase_04 AC 53 ms
29,824 KB
testcase_05 AC 53 ms
29,568 KB
testcase_06 AC 52 ms
29,440 KB
testcase_07 AC 52 ms
29,312 KB
testcase_08 AC 52 ms
29,696 KB
testcase_09 AC 53 ms
29,696 KB
testcase_10 AC 52 ms
29,568 KB
testcase_11 AC 53 ms
29,400 KB
testcase_12 AC 53 ms
29,564 KB
testcase_13 AC 52 ms
29,824 KB
testcase_14 AC 52 ms
29,824 KB
testcase_15 AC 54 ms
29,696 KB
testcase_16 AC 54 ms
29,568 KB
testcase_17 AC 53 ms
29,824 KB
testcase_18 AC 51 ms
29,568 KB
testcase_19 AC 52 ms
29,824 KB
testcase_20 AC 51 ms
29,312 KB
testcase_21 AC 51 ms
29,440 KB
testcase_22 AC 50 ms
29,528 KB
testcase_23 AC 51 ms
29,440 KB
testcase_24 AC 52 ms
29,440 KB
testcase_25 AC 52 ms
29,312 KB
testcase_26 AC 52 ms
29,440 KB
testcase_27 AC 52 ms
29,568 KB
testcase_28 AC 53 ms
29,696 KB
testcase_29 AC 53 ms
29,568 KB
testcase_30 AC 53 ms
29,696 KB
testcase_31 AC 54 ms
29,568 KB
testcase_32 AC 52 ms
29,568 KB
testcase_33 AC 52 ms
29,440 KB
testcase_34 AC 53 ms
29,696 KB
testcase_35 AC 51 ms
29,440 KB
testcase_36 WA -
testcase_37 AC 51 ms
29,440 KB
testcase_38 AC 51 ms
29,312 KB
testcase_39 AC 51 ms
29,564 KB
testcase_40 WA -
testcase_41 AC 53 ms
29,440 KB
testcase_42 AC 51 ms
29,312 KB
testcase_43 WA -
testcase_44 AC 51 ms
29,440 KB
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (89 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace No1475_gomi
{
    class Program
    {
        static void Main(string[] args)
        {
            // 時計の数を読み込む
            // コンソールから1行読み込んでintに変換
            int num = Convert.ToInt32(Console.ReadLine());

            // 最終的な結果を格納するリスト
            List<List<int>> result = new List<List<int>>();

            // 部品を読み込む
            // 時計(行)の数だけ繰り返し
            for (int i=0; i < num; i++)
            {
                // 1行読み込む
                string tmpLine = Console.ReadLine();
                // 半角スペースで行を分割
                string[] LineSplit = tmpLine.Split(" ");

                // 1行をint型リストに置き換え
                // stringのままでは扱いにくいため.下準備のようなものであり本問の本質的部分ではないです.
                List<int> LineList = new List<int>(); // 1行をint型に置き換えるリスト
                for (int j =0; j < Convert.ToInt32(LineSplit[0]) + 1; j++)
                {
                    if(j != 0) // 先頭要素は部品数ではないため無視する
                    {
                        LineList.Add(Convert.ToInt32(LineSplit[j]));
                    }                    
                }

                // 読み込んだ行から部品のリストを作成する
                // ソートアルゴリズムを利用・ここではバブルソート
                for (int j = 0; j < LineList.Count; j++)
                {
                    for (int k = 0; k < LineList.Count - 1 - j; k++)
                    {
                        if(LineList[k] < LineList[k + 1]) // k番目の要素がk+1番目の要素より小さい
                        {
                            // 入れ替えを行う
                            int tmpNum = LineList[k];
                            LineList[k] = LineList[k + 1];
                            LineList[k+1] = tmpNum;
                        }
                    }                    
                }

                result.Add(LineList); // 最終的な結果のリストに格納

            } // 時計(行)の数だけ繰り返し 終了

            // 結果の出力
            foreach (var row in result)
            {
                foreach (var cell in row)
                {
                    // コンソールに1要素書き出す
                    Console.Write(cell);
                    // 最終要素でないなら半角スペースも書き出す
                    if(row.IndexOf(cell) != row.Count - 1)
                    {
                        Console.Write(" ");
                    }
                    else // 最終行なら改行(改行コードだとうまく働かないのでWriteLineにしています.)
                    {
                        Console.WriteLine("");
                        
                    }
                }
            }
        }
    }
}
0