結果

問題 No.292 芸名
ユーザー GrenacheGrenache
提出日時 2015-10-23 22:23:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 6,208 ms
コンパイル使用メモリ 76,504 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-22 15:52:54
合計ジャッジ時間 6,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,252 KB
testcase_01 AC 128 ms
41,264 KB
testcase_02 AC 124 ms
41,392 KB
testcase_03 AC 127 ms
41,092 KB
testcase_04 AC 114 ms
41,500 KB
testcase_05 AC 123 ms
41,580 KB
testcase_06 AC 125 ms
40,900 KB
testcase_07 AC 125 ms
41,176 KB
testcase_08 AC 113 ms
40,300 KB
testcase_09 AC 127 ms
41,212 KB
testcase_10 AC 133 ms
41,260 KB
testcase_11 AC 124 ms
41,528 KB
testcase_12 AC 112 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder292 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String s = sc.next();
        int t = sc.nextInt();
        int u = sc.nextInt();

        String ret = s.substring(0, Math.max(t, u));
        ret += s.substring(Math.max(t, u) + 1, s.length());

        s = ret;
        if (t != u) {
            ret = s.substring(0, Math.min(t, u));
            ret += s.substring(Math.min(t, u) + 1, s.length());
        }

        System.out.println(ret);

        sc.close();
    }
}
0