結果

問題 No.18 うーさー暗号
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-09-27 20:13:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 235 bytes
コンパイル時間 10,519 ms
コンパイル使用メモリ 427,252 KB
実行使用メモリ 57,108 KB
最終ジャッジ日時 2024-11-20 16:49:49
合計ジャッジ時間 15,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
57,080 KB
testcase_01 AC 320 ms
57,056 KB
testcase_02 AC 319 ms
57,068 KB
testcase_03 AC 332 ms
57,008 KB
testcase_04 AC 327 ms
57,024 KB
testcase_05 AC 325 ms
57,108 KB
testcase_06 AC 330 ms
57,100 KB
testcase_07 AC 329 ms
57,028 KB
testcase_08 AC 326 ms
57,028 KB
testcase_09 AC 325 ms
57,012 KB
testcase_10 AC 318 ms
57,068 KB
testcase_11 AC 317 ms
57,076 KB
testcase_12 AC 325 ms
57,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

val dic = ('A'..'Z').toList()
val n = dic.size

fun main(args: Array<String>) {
	val S = readLine()?.toMutableList() ?: return

	S.forEachIndexed { i, v ->
		S[i] = dic[((v - 'A' - i - 1) % n + n) % n]
	}
	println(S.joinToString(""))
}
0