結果

問題 No.1217 せしすせそ
ユーザー rymg111rymg111
提出日時 2020-09-21 18:09:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 76,152 KB
実行使用メモリ 42,508 KB
最終ジャッジ日時 2024-06-24 11:51:20
合計ジャッジ時間 4,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
42,316 KB
testcase_01 AC 140 ms
42,228 KB
testcase_02 AC 145 ms
42,308 KB
testcase_03 AC 142 ms
42,444 KB
testcase_04 AC 142 ms
42,188 KB
testcase_05 AC 144 ms
42,248 KB
testcase_06 AC 145 ms
42,508 KB
testcase_07 AC 146 ms
42,336 KB
testcase_08 AC 144 ms
42,392 KB
testcase_09 AC 144 ms
42,224 KB
testcase_10 AC 147 ms
42,360 KB
testcase_11 AC 150 ms
42,416 KB
testcase_12 AC 145 ms
42,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		char[] text = input.next().toCharArray();
		for (int i = 0; i < text.length; i++) {
			if (text[i] != 'a' + i) {
				System.out.println((char)('a' + i) + "to" + text[i]);
			}
		}
	}
}
0