結果

問題 No.537 ユーザーID
ユーザー mosmos_21mosmos_21
提出日時 2017-06-30 23:41:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 77,384 KB
実行使用メモリ 54,616 KB
最終ジャッジ日時 2024-10-04 21:45:44
合計ジャッジ時間 7,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,676 KB
testcase_01 AC 125 ms
41,244 KB
testcase_02 AC 109 ms
41,256 KB
testcase_03 AC 115 ms
41,232 KB
testcase_04 AC 126 ms
41,140 KB
testcase_05 AC 120 ms
40,876 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 122 ms
41,356 KB
testcase_10 AC 121 ms
41,128 KB
testcase_11 AC 113 ms
41,304 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 133 ms
40,936 KB
testcase_19 AC 140 ms
41,404 KB
testcase_20 AC 137 ms
41,236 KB
testcase_21 AC 134 ms
41,344 KB
testcase_22 AC 137 ms
41,340 KB
testcase_23 AC 130 ms
41,472 KB
testcase_24 AC 126 ms
41,312 KB
testcase_25 AC 136 ms
41,464 KB
testcase_26 AC 137 ms
41,440 KB
testcase_27 AC 134 ms
41,512 KB
testcase_28 AC 133 ms
41,268 KB
testcase_29 AC 121 ms
41,460 KB
testcase_30 AC 128 ms
41,480 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
       Scanner in = new Scanner(System.in);
       long n = in.nextLong();
       int ans = 0;
       for(int i = 1; i <= (int)Math.sqrt(n); i++){
           if(n % i == 0){
               ans += (n / i == i) ? 1 : 2;
           }
       }
       System.out.println(ans);
    }
}
0