結果
問題 | No.18 うーさー暗号 |
ユーザー | masuyuu |
提出日時 | 2020-09-17 22:11:53 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 1,998 ms |
コンパイル使用メモリ | 74,316 KB |
実行使用メモリ | 54,524 KB |
最終ジャッジ日時 | 2024-06-22 06:54:24 |
合計ジャッジ時間 | 3,961 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 99 ms
53,004 KB |
testcase_01 | AC | 103 ms
53,484 KB |
testcase_02 | AC | 113 ms
54,008 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); char[] a = s.toCharArray(); char[] c = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; int y = 0; for(int i=0;i<a.length;i++) { for(int x=0;x<c.length;x++) { if(a[i]==c[x]) { if(x-i-1<0) { while(x-i-1+y<0) { y+=c.length; } System.out.print(c[x-i-1+y]); }else { System.out.print(c[x-i-1]); } } } } } }