結果

問題 No.18 うーさー暗号
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-08 14:34:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 12,543 ms
コンパイル使用メモリ 429,276 KB
実行使用メモリ 57,220 KB
最終ジャッジ日時 2024-11-20 11:35:13
合計ジャッジ時間 16,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
56,864 KB
testcase_01 AC 329 ms
56,812 KB
testcase_02 AC 328 ms
56,908 KB
testcase_03 AC 336 ms
57,076 KB
testcase_04 AC 338 ms
57,052 KB
testcase_05 AC 336 ms
57,220 KB
testcase_06 AC 336 ms
57,032 KB
testcase_07 AC 337 ms
57,164 KB
testcase_08 AC 350 ms
57,056 KB
testcase_09 AC 338 ms
56,992 KB
testcase_10 AC 336 ms
56,892 KB
testcase_11 AC 331 ms
56,888 KB
testcase_12 AC 341 ms
57,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^
Main.kt:9:9: warning: variable 'd' is never used
    val d = i%26
        ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val m = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toList().mapIndexed { i,x ->
     Pair(i, x)
  }.toMap()
  val os = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".toList().mapIndexed { i,x ->
     Pair(x, i)
  }.toMap()
  readLine()!!.toList().mapIndexed { i,x ->
    val d = i%26
    val ii = (26*100 + os[x]!! - i - 1)%26
    //println("$i $d ${m[ii]} ${ii}")
    m[ii]
  }.joinToString("").let { println(it) }
}
0