結果
問題 | No.39 桁の数字を入れ替え |
ユーザー | suzu |
提出日時 | 2023-05-16 13:05:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 908 bytes |
コンパイル時間 | 1,212 ms |
コンパイル使用メモリ | 110,468 KB |
実行使用メモリ | 25,852 KB |
最終ジャッジ日時 | 2024-05-08 10:41:57 |
合計ジャッジ時間 | 2,488 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
23,596 KB |
testcase_01 | AC | 27 ms
23,724 KB |
testcase_02 | AC | 26 ms
23,440 KB |
testcase_03 | AC | 27 ms
23,732 KB |
testcase_04 | AC | 27 ms
23,984 KB |
testcase_05 | AC | 26 ms
23,592 KB |
testcase_06 | AC | 27 ms
25,472 KB |
testcase_07 | AC | 26 ms
23,944 KB |
testcase_08 | AC | 26 ms
25,604 KB |
testcase_09 | AC | 27 ms
25,764 KB |
testcase_10 | AC | 27 ms
25,736 KB |
testcase_11 | AC | 26 ms
23,816 KB |
testcase_12 | AC | 26 ms
25,852 KB |
testcase_13 | AC | 27 ms
23,712 KB |
testcase_14 | AC | 27 ms
25,600 KB |
testcase_15 | AC | 27 ms
23,724 KB |
testcase_16 | AC | 26 ms
23,720 KB |
testcase_17 | AC | 27 ms
23,848 KB |
testcase_18 | AC | 26 ms
23,596 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; namespace yukicoder { class Programs { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); var list = new List<int>(); int tn = N; while(tn > 0) { list.Add(tn % 10); tn /= 10; } list.Reverse(); for(int p = 0;p < list.Count - 1;p++) { int head = list[p]; int max = -1; int maxIndex = -1; for(int q = p + 1;q < list.Count;q++) { int ch = list[q]; if(max <= ch) { max = ch; maxIndex = q; } } if(max == -1 || max <= head) { continue; }else { list[p] = max; list[maxIndex] = head; break; } } list.Reverse(); int sum = 0; int a = 1; foreach(int i in list) { sum += a * i; a *= 10; } Console.WriteLine(sum); } } }