結果

問題 No.292 芸名
ユーザー hikari2004hikari2004
提出日時 2016-04-21 17:08:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 3,274 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-10-04 14:33:05
合計ジャッジ時間 5,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,032 KB
testcase_01 AC 122 ms
53,844 KB
testcase_02 AC 124 ms
54,112 KB
testcase_03 AC 120 ms
53,816 KB
testcase_04 AC 108 ms
53,048 KB
testcase_05 AC 106 ms
52,812 KB
testcase_06 AC 117 ms
54,092 KB
testcase_07 AC 115 ms
53,992 KB
testcase_08 AC 117 ms
54,004 KB
testcase_09 AC 120 ms
54,048 KB
testcase_10 AC 132 ms
54,252 KB
testcase_11 AC 125 ms
53,916 KB
testcase_12 AC 124 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;

import java.util.Scanner;

public class No_292 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String str = sc.next();
        int t = sc.nextInt();
        int u = sc.nextInt();

        for(int i = 0; i < str.length(); i++){
            if(i != t && i != u){
                System.out.print(str.charAt(i));
            }
        }
        System.out.println();
    }
}
0