結果

問題 No.292 芸名
ユーザー kaoetayakaoetaya
提出日時 2016-11-29 20:08:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 3,029 ms
コンパイル使用メモリ 77,720 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-05-05 15:24:25
合計ジャッジ時間 5,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,480 KB
testcase_01 AC 117 ms
41,448 KB
testcase_02 AC 107 ms
40,204 KB
testcase_03 AC 111 ms
41,320 KB
testcase_04 AC 102 ms
40,412 KB
testcase_05 AC 112 ms
41,336 KB
testcase_06 AC 117 ms
41,376 KB
testcase_07 AC 115 ms
41,236 KB
testcase_08 AC 108 ms
40,088 KB
testcase_09 AC 122 ms
41,244 KB
testcase_10 AC 122 ms
41,412 KB
testcase_11 AC 99 ms
39,644 KB
testcase_12 AC 109 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class pre {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
		String str = s.next();
		int a = s.nextInt();
		int b = s.nextInt();
		
		for(int i=0;i<str.length();i++){
			if(i==a || i==b){
			}
			else{
				System.out.print(str.charAt(i));
			}
		}
		
		System.out.println();
    }
}
0