結果

問題 No.537 ユーザーID
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 06:40:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 11,805 ms
コンパイル使用メモリ 433,440 KB
実行使用メモリ 77,496 KB
最終ジャッジ日時 2024-11-20 10:50:23
合計ジャッジ時間 26,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
60,116 KB
testcase_01 AC 329 ms
60,072 KB
testcase_02 AC 332 ms
60,000 KB
testcase_03 AC 331 ms
60,100 KB
testcase_04 AC 327 ms
59,996 KB
testcase_05 AC 328 ms
60,036 KB
testcase_06 AC 327 ms
60,260 KB
testcase_07 AC 333 ms
60,108 KB
testcase_08 AC 337 ms
60,204 KB
testcase_09 AC 335 ms
59,956 KB
testcase_10 AC 331 ms
60,088 KB
testcase_11 AC 334 ms
60,084 KB
testcase_12 AC 329 ms
59,996 KB
testcase_13 AC 331 ms
60,096 KB
testcase_14 AC 329 ms
60,168 KB
testcase_15 AC 327 ms
60,076 KB
testcase_16 AC 326 ms
60,024 KB
testcase_17 AC 336 ms
60,128 KB
testcase_18 AC 380 ms
70,512 KB
testcase_19 AC 385 ms
74,468 KB
testcase_20 AC 378 ms
74,564 KB
testcase_21 AC 373 ms
66,536 KB
testcase_22 AC 383 ms
74,764 KB
testcase_23 AC 383 ms
66,532 KB
testcase_24 AC 362 ms
62,408 KB
testcase_25 AC 390 ms
74,656 KB
testcase_26 AC 388 ms
74,704 KB
testcase_27 AC 381 ms
70,608 KB
testcase_28 AC 429 ms
64,844 KB
testcase_29 AC 457 ms
77,496 KB
testcase_30 AC 453 ms
71,272 KB
testcase_31 AC 375 ms
64,408 KB
testcase_32 AC 371 ms
64,400 KB
testcase_33 AC 428 ms
75,116 KB
testcase_34 AC 383 ms
68,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^
Main.kt:15:45: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Pair<Long, Long>
          listOf( it!!.first.toString() + it!!.second.toString() , it!!.second.toString() + it!!.first.toString() )
                                            ^
Main.kt:15:70: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Pair<Long, Long>
          listOf( it!!.first.toString() + it!!.second.toString() , it!!.second.toString() + it!!.first.toString() )
                                                                     ^
Main.kt:15:95: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Pair<Long, Long>
          listOf( it!!.first.toString() + it!!.second.toString() , it!!.second.toString() + it!!.first.toString() )
                                                                                              ^

ソースコード

diff #

import java.lang.Math
fun main( args : Array<String> ) {
  readLine()!!.toLong()
    .let {
      (1..Math.pow(it.toDouble(), 0.5).toLong()).map { i ->
        when { 
          it%i.toLong() == 0L -> Pair(i, it/i)
          else -> null
        }
      }.filter { 
        it != null 
      }.toSet()
      .let {
        it.map {
          listOf( it!!.first.toString() + it!!.second.toString() , it!!.second.toString() + it!!.first.toString() )
        }.flatMap { it 
        }.toSet()
        .let {
          println(it.size)
        }
      }
    }
}
0