結果

問題 No.1157 Many Quotients easy
ユーザー RISE70226821RISE70226821
提出日時 2020-08-18 10:37:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-10-12 01:39:52
合計ジャッジ時間 7,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,048 KB
testcase_01 AC 146 ms
54,128 KB
testcase_02 AC 143 ms
54,120 KB
testcase_03 AC 154 ms
54,116 KB
testcase_04 AC 149 ms
54,060 KB
testcase_05 AC 143 ms
54,520 KB
testcase_06 AC 146 ms
54,204 KB
testcase_07 AC 136 ms
54,188 KB
testcase_08 AC 150 ms
54,012 KB
testcase_09 AC 150 ms
54,284 KB
testcase_10 AC 140 ms
54,168 KB
testcase_11 AC 142 ms
53,628 KB
testcase_12 AC 145 ms
53,800 KB
testcase_13 AC 151 ms
54,368 KB
testcase_14 AC 148 ms
53,640 KB
testcase_15 AC 143 ms
54,144 KB
testcase_16 AC 151 ms
54,228 KB
testcase_17 AC 153 ms
54,296 KB
testcase_18 AC 151 ms
54,344 KB
testcase_19 AC 147 ms
54,332 KB
testcase_20 AC 144 ms
53,912 KB
testcase_21 AC 135 ms
54,040 KB
testcase_22 AC 118 ms
52,784 KB
testcase_23 AC 135 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		
		// カウント
		Set<Integer> hs = new HashSet<>();
		for(int i = 1; i <= N; i++){
			int sho = N / i;
			if(!hs.contains(sho)){
				hs.add(sho);
			}
		}
		
		// 出力
		System.out.println(hs.size());
	}
}
0