結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
56,904 KB
testcase_01 AC 317 ms
56,920 KB
testcase_02 AC 314 ms
57,080 KB
testcase_03 AC 322 ms
57,112 KB
testcase_04 AC 325 ms
57,144 KB
testcase_05 AC 324 ms
57,276 KB
testcase_06 AC 327 ms
57,116 KB
testcase_07 AC 328 ms
57,236 KB
testcase_08 AC 324 ms
57,088 KB
testcase_09 AC 322 ms
57,096 KB
testcase_10 AC 314 ms
57,088 KB
testcase_11 AC 310 ms
57,036 KB
testcase_12 AC 317 ms
57,096 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