結果

問題 No.292 芸名
ユーザー nCk_cvnCk_cv
提出日時 2015-10-27 19:17:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 5,542 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-09-13 04:00:47
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,076 KB
testcase_01 AC 133 ms
54,052 KB
testcase_02 AC 134 ms
54,224 KB
testcase_03 AC 136 ms
54,144 KB
testcase_04 AC 133 ms
54,028 KB
testcase_05 AC 140 ms
53,772 KB
testcase_06 AC 137 ms
53,940 KB
testcase_07 AC 135 ms
54,052 KB
testcase_08 AC 133 ms
53,736 KB
testcase_09 AC 138 ms
54,132 KB
testcase_10 AC 137 ms
53,860 KB
testcase_11 AC 135 ms
53,924 KB
testcase_12 AC 133 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.awt.geom.*;
import java.io.*;
    
    
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String in = sc.next();
		int a = sc.nextInt();
		int b = sc.nextInt();
		for(int i = 0; i < in.length(); i++) {
			if(i != a && i != b) {
				System.out.print(in.charAt(i));
			}
		}
		System.out.println();
	}
	
}
0