結果

問題 No.292 芸名
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-01-25 17:36:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-09-21 16:12:25
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,208 KB
testcase_01 AC 135 ms
54,116 KB
testcase_02 AC 137 ms
54,412 KB
testcase_03 AC 134 ms
54,028 KB
testcase_04 AC 134 ms
54,260 KB
testcase_05 AC 135 ms
53,828 KB
testcase_06 AC 137 ms
54,416 KB
testcase_07 AC 135 ms
54,268 KB
testcase_08 AC 137 ms
54,220 KB
testcase_09 AC 137 ms
53,964 KB
testcase_10 AC 137 ms
54,020 KB
testcase_11 AC 135 ms
54,332 KB
testcase_12 AC 135 ms
54,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0291 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		String s = in.next();
		int t = in.nextInt();
		int u = in.nextInt();
		int n = s.length();
		for (int i=0; i<n; i++) {
			if (i != t && i != u) out.print(s.charAt(i));
		}
		out.println();
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0