結果

問題 No.729 文字swap
ユーザー nalinali
提出日時 2019-08-31 13:11:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 108,008 KB
実行使用メモリ 27,160 KB
最終ジャッジ日時 2024-05-03 13:18:24
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,132 KB
testcase_01 AC 24 ms
24,992 KB
testcase_02 AC 25 ms
25,216 KB
testcase_03 AC 23 ms
24,988 KB
testcase_04 AC 24 ms
25,244 KB
testcase_05 AC 24 ms
27,156 KB
testcase_06 AC 24 ms
27,160 KB
testcase_07 AC 23 ms
25,116 KB
testcase_08 AC 23 ms
27,128 KB
testcase_09 AC 24 ms
23,092 KB
testcase_10 AC 25 ms
24,864 KB
testcase_11 AC 25 ms
25,112 KB
testcase_12 AC 25 ms
25,368 KB
testcase_13 AC 24 ms
23,476 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.Linq;

class Program
{
    static void Main()
    {
        var s = Console.ReadLine().ToCharArray();
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var i = a[0];
        var j = a[1];
        var t = s[i];
        s[i] = s[j];
        s[j] = t;
        Console.WriteLine(s);
    }
}
0