結果

問題 No.292 芸名
ユーザー cande398cande398
提出日時 2017-10-10 17:23:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 78,764 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-11-17 08:28:12
合計ジャッジ時間 4,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,036 KB
testcase_01 AC 144 ms
54,036 KB
testcase_02 AC 138 ms
53,928 KB
testcase_03 AC 138 ms
54,032 KB
testcase_04 AC 142 ms
54,060 KB
testcase_05 AC 139 ms
53,980 KB
testcase_06 AC 139 ms
53,780 KB
testcase_07 AC 136 ms
54,196 KB
testcase_08 AC 139 ms
53,720 KB
testcase_09 AC 143 ms
54,092 KB
testcase_10 AC 143 ms
53,804 KB
testcase_11 AC 140 ms
53,684 KB
testcase_12 AC 142 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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