結果

問題 No.1217 せしすせそ
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 10:05:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 76,292 KB
実行使用メモリ 42,564 KB
最終ジャッジ日時 2024-10-03 03:08:56
合計ジャッジ時間 6,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,432 KB
testcase_01 AC 149 ms
42,168 KB
testcase_02 AC 147 ms
42,264 KB
testcase_03 AC 134 ms
41,920 KB
testcase_04 AC 149 ms
42,476 KB
testcase_05 AC 150 ms
42,256 KB
testcase_06 AC 151 ms
42,564 KB
testcase_07 AC 148 ms
42,340 KB
testcase_08 AC 155 ms
42,436 KB
testcase_09 AC 137 ms
41,488 KB
testcase_10 AC 146 ms
42,016 KB
testcase_11 AC 157 ms
42,468 KB
testcase_12 AC 150 ms
42,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	char[] char_array = sc.nextLine().toCharArray();

	    	sc.close();
	    	if (char_array[0] != 'a') {
	    		System.out.println("ato" + char_array[0]);
	    	}else {
	    	for (int i = 1; i < 26; i ++) {
	    		if (char_array[i] != char_array[i - 1] + 1) {
	    			System.out.println((char)(char_array[i - 1] + 1) +"to" + char_array[i]);
	    			break;
	    		}
	    	}}



	    	}

}
0