結果

問題 No.1157 Many Quotients easy
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-17 16:00:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 6,311 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-11-15 06:55:24
合計ジャッジ時間 8,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,140 KB
testcase_01 AC 132 ms
53,828 KB
testcase_02 AC 133 ms
54,216 KB
testcase_03 AC 136 ms
53,944 KB
testcase_04 AC 134 ms
53,976 KB
testcase_05 AC 133 ms
54,040 KB
testcase_06 AC 133 ms
53,860 KB
testcase_07 AC 132 ms
53,988 KB
testcase_08 AC 132 ms
54,128 KB
testcase_09 AC 136 ms
54,052 KB
testcase_10 AC 134 ms
54,084 KB
testcase_11 AC 136 ms
54,084 KB
testcase_12 AC 139 ms
54,080 KB
testcase_13 AC 138 ms
54,008 KB
testcase_14 AC 137 ms
54,024 KB
testcase_15 AC 132 ms
53,844 KB
testcase_16 AC 134 ms
54,160 KB
testcase_17 AC 132 ms
54,168 KB
testcase_18 AC 133 ms
54,024 KB
testcase_19 AC 134 ms
54,100 KB
testcase_20 AC 136 ms
54,144 KB
testcase_21 AC 131 ms
53,848 KB
testcase_22 AC 133 ms
54,132 KB
testcase_23 AC 133 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {
	    		Scanner sc = new Scanner(System.in);
	            int n = sc.nextInt();
	            sc.close();
	            int count = 1;
	            int temp = 1;
	            for (int i=n/2;i>0;i--) {
	            	if (n / i != temp) {
	            		count ++;
	            		temp = n/i;
	            	}
	            }
	            System.out.println(count);
}}
0