結果
問題 | No.18 うーさー暗号 |
ユーザー | バカらっく |
提出日時 | 2019-09-01 12:39:08 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 328 bytes |
コンパイル時間 | 11,576 ms |
コンパイル使用メモリ | 430,472 KB |
実行使用メモリ | 51,988 KB |
最終ジャッジ日時 | 2024-05-05 20:20:54 |
合計ジャッジ時間 | 16,692 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 281 ms
51,536 KB |
testcase_01 | AC | 274 ms
51,680 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
fun main(args: Array<String>) { val inText = readLine()!! val arr = inText.map { it }.toMutableList() for(i in arr.indices) { var newChar = arr[i] - (i+1) if(newChar < 'A') { newChar = 'Z' - ('A' - newChar - 1) } arr[i] = newChar } println(arr.joinToString("")) }