結果

問題 No.677 10^Nの約数
ユーザー 💕💖💞💕💖💞
提出日時 2018-05-06 23:24:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 10,393 ms
コンパイル使用メモリ 430,268 KB
実行使用メモリ 60,520 KB
最終ジャッジ日時 2024-11-20 15:57:42
合計ジャッジ時間 17,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
60,176 KB
testcase_01 AC 319 ms
60,308 KB
testcase_02 AC 312 ms
60,180 KB
testcase_03 AC 305 ms
60,208 KB
testcase_04 AC 313 ms
60,208 KB
testcase_05 AC 319 ms
60,296 KB
testcase_06 AC 310 ms
60,328 KB
testcase_07 AC 310 ms
60,332 KB
testcase_08 AC 328 ms
60,492 KB
testcase_09 AC 311 ms
60,344 KB
testcase_10 AC 314 ms
60,328 KB
testcase_11 AC 323 ms
60,348 KB
testcase_12 AC 318 ms
60,304 KB
testcase_13 AC 329 ms
60,372 KB
testcase_14 AC 338 ms
60,276 KB
testcase_15 AC 334 ms
60,512 KB
testcase_16 AC 339 ms
60,404 KB
testcase_17 AC 354 ms
60,424 KB
testcase_18 AC 350 ms
60,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:19:7: warning: name shadowed: two
  for(two in twos) {
      ^
Main.kt:20:9: warning: name shadowed: five
    for(five in fives) {
        ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  
  var two = 1L
  val twos = mutableSetOf(1L)
  (1..n).map { 
    two *= 2L
    twos.add(two)
  }

  var five = 1L
  val fives = mutableSetOf(1L)
  (1..n).map { 
    five *= 5L
    fives.add(five)
  }
  
  val res = mutableSetOf(1L)
  for(two in twos) {
    for(five in fives) {
      res.add(two*five)
    }
  }
  res.sorted().map {
    println(it)
  }
}
0