結果
問題 | No.293 4>7の世界 |
ユーザー | No |
提出日時 | 2015-11-03 01:07:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 1,823 bytes |
コンパイル時間 | 2,961 ms |
コンパイル使用メモリ | 113,436 KB |
実行使用メモリ | 26,148 KB |
最終ジャッジ日時 | 2024-06-09 16:49:53 |
合計ジャッジ時間 | 2,542 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
26,020 KB |
testcase_01 | AC | 22 ms
22,196 KB |
testcase_02 | AC | 22 ms
24,256 KB |
testcase_03 | AC | 22 ms
26,148 KB |
testcase_04 | AC | 24 ms
24,132 KB |
testcase_05 | AC | 23 ms
26,140 KB |
testcase_06 | AC | 23 ms
23,876 KB |
testcase_07 | AC | 24 ms
24,124 KB |
testcase_08 | AC | 24 ms
26,004 KB |
testcase_09 | AC | 24 ms
24,256 KB |
testcase_10 | AC | 23 ms
23,968 KB |
testcase_11 | AC | 23 ms
23,872 KB |
testcase_12 | AC | 23 ms
26,136 KB |
testcase_13 | AC | 23 ms
24,000 KB |
testcase_14 | AC | 24 ms
25,884 KB |
testcase_15 | AC | 25 ms
25,884 KB |
testcase_16 | AC | 24 ms
23,996 KB |
testcase_17 | AC | 24 ms
25,916 KB |
testcase_18 | AC | 24 ms
24,092 KB |
testcase_19 | AC | 23 ms
24,128 KB |
testcase_20 | AC | 23 ms
23,996 KB |
testcase_21 | AC | 22 ms
23,988 KB |
testcase_22 | AC | 22 ms
23,972 KB |
testcase_23 | AC | 22 ms
22,196 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.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yuki { class Program { static void Main(string[] args) { string[] a = Console.ReadLine().Split(); int b = a[0].Length > a[1].Length ? a[1].Length : a[0].Length; string w0 = a[0]; string w1 = a[1]; for (int i = 0; i < b; i++) { string aa = a[0].Substring(a[0].Length - 1 - i,1); string bb = a[1].Substring(a[1].Length - 1 - i,1); if ((aa == "4") && (bb == "7")) { a[0] = a[0].Remove(a[0].Length -1 -i,1); a[0] = a[0].Insert(a[0].Length - i, "7"); a[1] = a[1].Remove(a[1].Length - 1 - i, 1); a[1] = a[1].Insert(a[1].Length - i, "4"); continue; } if ((aa == "7") && (bb == "4")) { a[0] = a[0].Remove(a[0].Length - 1 - i, 1); a[0] = a[0].Insert(a[0].Length - i, "4"); a[1] = a[1].Remove(a[1].Length - 1 - i, 1); a[1] = a[1].Insert(a[1].Length - i, "7"); } } string ans = int.Parse(a[0]) > int.Parse(a[1]) ? w0 : w1; Console.Write(ans); Console.ReadLine(); } static int[] ConvertStringArrayToIntArray(string[] array) { return Array.ConvertAll(array, str => int.Parse(str)); } static List<int> ConvertStringArrayToIntList(string[] str) { var list = new List<int>(); foreach (var c in str) list.Add(int.Parse(c)); return list; } } }