結果

問題 No.18 うーさー暗号
ユーザー Koketti1Koketti1
提出日時 2017-02-05 23:18:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 50,560 KB
最終ジャッジ日時 2024-07-07 06:24:57
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
50,040 KB
testcase_01 AC 113 ms
50,064 KB
testcase_02 AC 115 ms
50,128 KB
testcase_03 AC 150 ms
50,560 KB
testcase_04 AC 147 ms
41,416 KB
testcase_05 AC 128 ms
41,524 KB
testcase_06 AC 146 ms
41,576 KB
testcase_07 AC 148 ms
40,388 KB
testcase_08 AC 141 ms
41,408 KB
testcase_09 AC 127 ms
41,760 KB
testcase_10 AC 121 ms
41,380 KB
testcase_11 AC 123 ms
41,580 KB
testcase_12 AC 145 ms
41,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		String S = scanner.next();
		for(int i = 0;i < S.length();i++){
			if((char)(S.charAt(i)-(i+1)%26) < 'A') {
				System.out.print( (char)(S.charAt(i)-(i+1)%26+26));
			}else{
				System.out.print( (char)(S.charAt(i)-(i+1)%26));
			}
		}
		System.out.println();
		scanner.close();
	}
}
0