結果

問題 No.292 芸名
ユーザー yamax3232yamax3232
提出日時 2017-02-16 15:00:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-06-09 12:48:56
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,324 KB
testcase_01 AC 102 ms
40,004 KB
testcase_02 AC 121 ms
41,256 KB
testcase_03 AC 124 ms
41,032 KB
testcase_04 AC 115 ms
41,104 KB
testcase_05 AC 108 ms
41,456 KB
testcase_06 AC 104 ms
41,712 KB
testcase_07 AC 109 ms
41,412 KB
testcase_08 AC 131 ms
41,420 KB
testcase_09 AC 126 ms
41,480 KB
testcase_10 AC 117 ms
41,228 KB
testcase_11 AC 115 ms
41,328 KB
testcase_12 AC 104 ms
41,164 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