結果

問題 No.292 芸名
ユーザー 37zigen37zigen
提出日時 2016-03-11 13:52:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2024-09-25 00:24:03
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,108 KB
testcase_01 AC 116 ms
52,788 KB
testcase_02 AC 128 ms
56,052 KB
testcase_03 AC 128 ms
54,180 KB
testcase_04 AC 128 ms
54,068 KB
testcase_05 AC 128 ms
54,188 KB
testcase_06 AC 128 ms
54,284 KB
testcase_07 AC 123 ms
54,072 KB
testcase_08 AC 129 ms
54,220 KB
testcase_09 AC 135 ms
54,476 KB
testcase_10 AC 133 ms
54,112 KB
testcase_11 AC 130 ms
54,180 KB
testcase_12 AC 132 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Date;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		long exec_time=new Date().getTime();
		Scanner sc=new Scanner(System.in);

		String s=sc.next();
		int t=sc.nextInt();
		int u=sc.nextInt();

		for(int i=0;i<s.length();i++){
			if(i==t||i==u){
				continue;
			}
			System.out.print(s.charAt(i));

		}
		System.out.println();
	}
}
0