結果

問題 No.18 うーさー暗号
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-09-27 19:50:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 11,433 ms
コンパイル使用メモリ 436,768 KB
実行使用メモリ 52,984 KB
最終ジャッジ日時 2024-11-20 16:49:06
合計ジャッジ時間 15,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
50,956 KB
testcase_01 AC 325 ms
50,632 KB
testcase_02 AC 311 ms
50,672 KB
testcase_03 AC 316 ms
52,984 KB
testcase_04 AC 318 ms
51,348 KB
testcase_05 AC 319 ms
51,388 KB
testcase_06 AC 317 ms
51,956 KB
testcase_07 AC 318 ms
52,108 KB
testcase_08 AC 313 ms
52,780 KB
testcase_09 AC 315 ms
52,120 KB
testcase_10 AC 312 ms
50,672 KB
testcase_11 AC 309 ms
51,064 KB
testcase_12 AC 315 ms
51,516 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() ?: return
	var ans = ""

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