結果

問題 No.292 芸名
ユーザー yamax3232yamax3232
提出日時 2017-02-16 15:00:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 4,010 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-12-30 00:16:51
合計ジャッジ時間 6,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,088 KB
testcase_01 AC 147 ms
41,460 KB
testcase_02 AC 146 ms
41,012 KB
testcase_03 AC 141 ms
41,340 KB
testcase_04 AC 131 ms
40,308 KB
testcase_05 AC 137 ms
40,176 KB
testcase_06 AC 148 ms
40,968 KB
testcase_07 AC 143 ms
41,284 KB
testcase_08 AC 149 ms
41,256 KB
testcase_09 AC 140 ms
39,992 KB
testcase_10 AC 135 ms
40,108 KB
testcase_11 AC 150 ms
41,216 KB
testcase_12 AC 148 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Geimei {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
Scanner kb=new Scanner(System.in);
String geimei=kb.next();
int a=kb.nextInt(),b=kb.nextInt();
char ch[]={};
ch=geimei.toCharArray();
ch[a]='\0';
ch[b]='\0';
for(int i=0;i<ch.length;i++){
	if(ch[i]!='\0'){
	System.out.printf("%c",ch[i]);
	}else{
		continue;
	}
}
System.out.println();
kb.close();
	}

}
0