結果

問題 No.537 ユーザーID
ユーザー arbtarbt
提出日時 2017-09-24 21:17:37
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 382 bytes
コンパイル時間 10,341 ms
コンパイル使用メモリ 427,420 KB
実行使用メモリ 127,976 KB
最終ジャッジ日時 2024-11-20 12:54:07
合計ジャッジ時間 69,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
58,652 KB
testcase_01 AC 339 ms
93,428 KB
testcase_02 AC 330 ms
62,168 KB
testcase_03 AC 327 ms
113,028 KB
testcase_04 AC 326 ms
58,816 KB
testcase_05 AC 329 ms
93,336 KB
testcase_06 AC 339 ms
62,080 KB
testcase_07 AC 333 ms
112,980 KB
testcase_08 AC 332 ms
58,552 KB
testcase_09 AC 327 ms
93,504 KB
testcase_10 AC 330 ms
62,040 KB
testcase_11 AC 345 ms
113,124 KB
testcase_12 AC 330 ms
58,764 KB
testcase_13 AC 330 ms
93,180 KB
testcase_14 AC 330 ms
62,124 KB
testcase_15 AC 330 ms
62,260 KB
testcase_16 AC 334 ms
58,568 KB
testcase_17 AC 331 ms
93,264 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:24:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {
    
    val N = scan.nextLong()
    
    val set = mutableSetOf<String>()
    var a = 1
    while(a*a<=N){
        if(a*(N/a)==N) {
            set.add("$a${N/a}")
            set.add("${N/a}$a")
        }
        a+=1
    }
    
    println(set.size)
    
}

var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}
0