結果

問題 No.544 Delete 7
ユーザー solitarywalkersolitarywalker
提出日時 2019-05-13 00:36:33
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 113,256 KB
実行使用メモリ 26,700 KB
最終ジャッジ日時 2024-07-05 20:53:14
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
22,576 KB
testcase_01 AC 23 ms
22,712 KB
testcase_02 AC 23 ms
24,620 KB
testcase_03 AC 23 ms
24,596 KB
testcase_04 AC 22 ms
24,852 KB
testcase_05 AC 22 ms
24,520 KB
testcase_06 AC 22 ms
24,468 KB
testcase_07 AC 23 ms
26,688 KB
testcase_08 AC 21 ms
22,832 KB
testcase_09 AC 22 ms
24,492 KB
testcase_10 AC 22 ms
24,828 KB
testcase_11 AC 21 ms
24,776 KB
testcase_12 AC 23 ms
22,452 KB
testcase_13 AC 22 ms
24,472 KB
testcase_14 AC 22 ms
24,596 KB
testcase_15 AC 22 ms
22,712 KB
testcase_16 AC 22 ms
24,596 KB
testcase_17 AC 22 ms
26,700 KB
testcase_18 AC 22 ms
24,652 KB
testcase_19 AC 22 ms
26,688 KB
testcase_20 AC 22 ms
24,364 KB
testcase_21 AC 21 ms
24,524 KB
testcase_22 AC 22 ms
24,728 KB
testcase_23 AC 22 ms
24,724 KB
testcase_24 AC 22 ms
24,720 KB
testcase_25 AC 22 ms
24,624 KB
testcase_26 AC 23 ms
24,648 KB
testcase_27 AC 22 ms
24,724 KB
testcase_28 AC 21 ms
24,724 KB
testcase_29 AC 22 ms
26,564 KB
testcase_30 AC 22 ms
24,500 KB
testcase_31 AC 22 ms
24,596 KB
testcase_32 AC 23 ms
24,752 KB
testcase_33 AC 23 ms
24,464 KB
testcase_34 AC 23 ms
24,492 KB
testcase_35 AC 22 ms
22,708 KB
testcase_36 AC 22 ms
24,720 KB
testcase_37 AC 22 ms
24,600 KB
testcase_38 AC 21 ms
24,652 KB
testcase_39 AC 23 ms
24,856 KB
testcase_40 AC 22 ms
24,904 KB
testcase_41 AC 22 ms
24,592 KB
testcase_42 AC 23 ms
24,592 KB
testcase_43 AC 22 ms
24,596 KB
testcase_44 AC 22 ms
24,596 KB
testcase_45 AC 21 ms
24,472 KB
testcase_46 AC 23 ms
24,336 KB
testcase_47 AC 22 ms
26,440 KB
testcase_48 AC 23 ms
26,512 KB
testcase_49 AC 22 ms
24,596 KB
testcase_50 AC 22 ms
24,724 KB
testcase_51 AC 22 ms
24,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Program
{
    public static void Main()
    {
        var anotherValue = string.Empty;
        var value = Console.ReadLine();
        var a = string.Concat(value.Select(c => c == '7' ? '6' : c));
        var b = string.Concat(value.Select(c => c == '7' ? '1' : '0'));
        Console.WriteLine(a + " " + b);
    }
}
0