結果

問題 No.292 芸名
ユーザー kaoetayakaoetaya
提出日時 2016-11-29 20:08:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 3,067 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 53,904 KB
最終ジャッジ日時 2024-11-27 13:50:06
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,556 KB
testcase_01 AC 120 ms
53,704 KB
testcase_02 AC 119 ms
53,836 KB
testcase_03 AC 113 ms
53,512 KB
testcase_04 AC 118 ms
53,744 KB
testcase_05 AC 122 ms
53,708 KB
testcase_06 AC 120 ms
53,636 KB
testcase_07 AC 119 ms
53,904 KB
testcase_08 AC 118 ms
53,824 KB
testcase_09 AC 120 ms
53,884 KB
testcase_10 AC 115 ms
52,804 KB
testcase_11 AC 109 ms
52,688 KB
testcase_12 AC 117 ms
53,808 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