結果

問題 No.1217 せしすせそ
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-06 20:13:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 4,340 ms
コンパイル使用メモリ 77,732 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-07-03 08:09:54
合計ジャッジ時間 6,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
42,200 KB
testcase_01 AC 159 ms
42,300 KB
testcase_02 AC 157 ms
42,400 KB
testcase_03 AC 159 ms
42,308 KB
testcase_04 AC 159 ms
42,472 KB
testcase_05 AC 161 ms
42,428 KB
testcase_06 AC 160 ms
42,300 KB
testcase_07 AC 158 ms
42,576 KB
testcase_08 AC 158 ms
42,496 KB
testcase_09 AC 160 ms
42,752 KB
testcase_10 AC 159 ms
42,488 KB
testcase_11 AC 158 ms
42,164 KB
testcase_12 AC 158 ms
42,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

// https://yukicoder.me/problems/no/1217
public class Seshisuseso1217 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    String base = "abcdefghijklmnopqrstuvwxyz";
    String replaced = sc.next();
    List<String> baseList = Arrays.asList(base.split(""));
    List<String> replacedList = Arrays.asList(replaced.split(""));

    for (int i = 0; i < base.length(); i++) {
      if (!baseList.get(i).equals(replacedList.get(i))) {
        System.out.println(baseList.get(i) + "to" + replacedList.get(i));
        return;
      }
    }
  }
}
0