結果
問題 | No.537 ユーザーID |
ユーザー | fal_rnd |
提出日時 | 2017-08-25 23:24:48 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 640 bytes |
コンパイル時間 | 2,744 ms |
コンパイル使用メモリ | 80,340 KB |
実行使用メモリ | 56,012 KB |
最終ジャッジ日時 | 2024-10-15 16:11:37 |
合計ジャッジ時間 | 7,178 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
41,896 KB |
testcase_01 | AC | 131 ms
41,360 KB |
testcase_02 | AC | 134 ms
42,172 KB |
testcase_03 | AC | 142 ms
42,280 KB |
testcase_04 | AC | 140 ms
42,036 KB |
testcase_05 | AC | 121 ms
41,668 KB |
testcase_06 | AC | 127 ms
41,848 KB |
testcase_07 | AC | 130 ms
41,560 KB |
testcase_08 | AC | 117 ms
41,636 KB |
testcase_09 | AC | 120 ms
41,624 KB |
testcase_10 | AC | 120 ms
41,476 KB |
testcase_11 | AC | 124 ms
40,464 KB |
testcase_12 | AC | 129 ms
41,648 KB |
testcase_13 | AC | 131 ms
41,956 KB |
testcase_14 | AC | 129 ms
41,884 KB |
testcase_15 | AC | 117 ms
41,544 KB |
testcase_16 | AC | 128 ms
41,956 KB |
testcase_17 | AC | 132 ms
41,972 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
import java.util.HashSet; import java.util.Scanner; import java.util.stream.IntStream; public class Main{ static IntStream REPS(int v){return IntStream.range(0,v);} static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);} static IntStream INS(int n) {return REPS(n).map(i->getInt());} static Scanner s=new Scanner(System.in); static int getInt(){return Integer.parseInt(s.next());} public static void main(String[]$){ int n=getInt(); int sq=(int)Math.sqrt(n)+1; HashSet<String>r=new HashSet<>(); for(int i=1;i<sq;++i)if(n%i==0) { r.add(""+i+n/i); r.add(""+n/i+i); } System.out.println(r.size()); } }