結果

問題 No.537 ユーザーID
ユーザー arbtarbt
提出日時 2017-09-24 21:22:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 11,087 ms
コンパイル使用メモリ 431,920 KB
実行使用メモリ 62,544 KB
最終ジャッジ日時 2024-11-20 12:56:00
合計ジャッジ時間 25,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
55,180 KB
testcase_01 AC 357 ms
55,164 KB
testcase_02 AC 348 ms
55,304 KB
testcase_03 AC 384 ms
55,216 KB
testcase_04 AC 352 ms
55,320 KB
testcase_05 AC 353 ms
55,272 KB
testcase_06 AC 355 ms
55,216 KB
testcase_07 AC 353 ms
55,216 KB
testcase_08 AC 354 ms
55,164 KB
testcase_09 AC 351 ms
55,408 KB
testcase_10 AC 353 ms
55,176 KB
testcase_11 AC 354 ms
55,216 KB
testcase_12 AC 357 ms
55,292 KB
testcase_13 AC 356 ms
55,264 KB
testcase_14 AC 353 ms
55,320 KB
testcase_15 AC 355 ms
55,220 KB
testcase_16 AC 354 ms
55,212 KB
testcase_17 AC 357 ms
55,348 KB
testcase_18 AC 387 ms
55,452 KB
testcase_19 AC 371 ms
55,308 KB
testcase_20 AC 367 ms
55,320 KB
testcase_21 AC 375 ms
55,468 KB
testcase_22 AC 371 ms
55,548 KB
testcase_23 AC 374 ms
55,412 KB
testcase_24 AC 372 ms
55,180 KB
testcase_25 AC 385 ms
55,340 KB
testcase_26 AC 384 ms
55,320 KB
testcase_27 AC 379 ms
55,272 KB
testcase_28 AC 458 ms
60,780 KB
testcase_29 AC 475 ms
60,272 KB
testcase_30 AC 495 ms
60,008 KB
testcase_31 AC 364 ms
55,324 KB
testcase_32 AC 368 ms
55,336 KB
testcase_33 AC 492 ms
62,544 KB
testcase_34 AC 374 ms
55,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 = 1L
    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