結果

問題 No.18 うーさー暗号
ユーザー papipenpapipen
提出日時 2017-03-28 21:51:43
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 429 bytes
コンパイル時間 1,800 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 56,220 KB
最終ジャッジ日時 2024-07-07 06:27:14
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,976 KB
testcase_01 AC 105 ms
40,852 KB
testcase_02 AC 117 ms
41,124 KB
testcase_03 AC 113 ms
40,924 KB
testcase_04 AC 101 ms
41,316 KB
testcase_05 AC 118 ms
41,376 KB
testcase_06 AC 106 ms
40,980 KB
testcase_07 AC 102 ms
40,872 KB
testcase_08 AC 103 ms
41,124 KB
testcase_09 AC 114 ms
41,404 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Usaangou{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		char a[] = s.next().toCharArray();
		int count = 0;
		for(int i = 0; i < a.length; i++){
			if(i <= 26){
				count = i + 1;
			}else{
				count = (i + 1) % 26;
			}
			if(a[i] - count >= 0x41){
				a[i] -= count;
			}else{
				a[i] -= count - 26;
			}
		}
		System.out.println(String.valueOf(a));
	}
}
				
0