結果

問題 No.292 芸名
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 19:48:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-11-25 21:31:57
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,112 KB
testcase_01 AC 119 ms
41,196 KB
testcase_02 AC 110 ms
40,532 KB
testcase_03 AC 103 ms
40,056 KB
testcase_04 AC 113 ms
41,044 KB
testcase_05 AC 101 ms
40,208 KB
testcase_06 AC 110 ms
40,056 KB
testcase_07 AC 116 ms
41,304 KB
testcase_08 AC 111 ms
41,236 KB
testcase_09 AC 104 ms
40,144 KB
testcase_10 AC 105 ms
40,180 KB
testcase_11 AC 113 ms
41,092 KB
testcase_12 AC 104 ms
39,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        String [] arr = S.split("");
        int t = sc.nextInt();
        int u = sc.nextInt();
        for(int i=0; i<arr.length; i++){
            if(i!=t && i!=u){
                System.out.print(arr[i]);
            }
        }
        System.out.println();
    }
}
0