結果

問題 No.634 硬貨の枚数1
ユーザー GrenacheGrenache
提出日時 2018-01-20 21:16:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 4,025 ms
コンパイル使用メモリ 75,708 KB
実行使用メモリ 54,648 KB
最終ジャッジ日時 2024-06-07 15:01:13
合計ジャッジ時間 16,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,204 KB
testcase_01 AC 135 ms
54,368 KB
testcase_02 AC 135 ms
54,120 KB
testcase_03 AC 135 ms
54,392 KB
testcase_04 AC 136 ms
53,948 KB
testcase_05 AC 133 ms
53,760 KB
testcase_06 AC 134 ms
54,480 KB
testcase_07 AC 135 ms
54,160 KB
testcase_08 AC 134 ms
54,136 KB
testcase_09 AC 135 ms
54,088 KB
testcase_10 AC 137 ms
53,936 KB
testcase_11 AC 135 ms
53,740 KB
testcase_12 AC 137 ms
53,892 KB
testcase_13 AC 133 ms
54,260 KB
testcase_14 AC 138 ms
53,932 KB
testcase_15 AC 158 ms
54,252 KB
testcase_16 AC 140 ms
54,036 KB
testcase_17 AC 139 ms
54,168 KB
testcase_18 AC 140 ms
53,880 KB
testcase_19 AC 137 ms
54,648 KB
testcase_20 AC 162 ms
54,188 KB
testcase_21 AC 159 ms
54,064 KB
testcase_22 AC 158 ms
54,020 KB
testcase_23 AC 136 ms
53,640 KB
testcase_24 AC 134 ms
54,164 KB
testcase_25 AC 141 ms
54,008 KB
testcase_26 AC 135 ms
53,964 KB
testcase_27 AC 134 ms
53,968 KB
testcase_28 AC 134 ms
53,960 KB
testcase_29 AC 136 ms
53,680 KB
testcase_30 AC 136 ms
53,888 KB
testcase_31 AC 136 ms
54,192 KB
testcase_32 AC 133 ms
53,820 KB
testcase_33 AC 135 ms
54,264 KB
testcase_34 AC 137 ms
54,124 KB
testcase_35 AC 138 ms
53,564 KB
testcase_36 AC 141 ms
53,984 KB
testcase_37 AC 137 ms
54,148 KB
testcase_38 AC 137 ms
54,340 KB
testcase_39 AC 162 ms
54,116 KB
testcase_40 AC 140 ms
54,400 KB
testcase_41 AC 140 ms
54,316 KB
testcase_42 AC 143 ms
54,400 KB
testcase_43 AC 138 ms
53,892 KB
testcase_44 AC 132 ms
54,200 KB
testcase_45 AC 137 ms
54,296 KB
testcase_46 AC 139 ms
53,852 KB
testcase_47 AC 155 ms
54,336 KB
testcase_48 AC 135 ms
54,124 KB
testcase_49 AC 138 ms
54,192 KB
testcase_50 AC 164 ms
54,264 KB
testcase_51 AC 137 ms
54,220 KB
testcase_52 AC 135 ms
53,708 KB
testcase_53 AC 135 ms
54,120 KB
testcase_54 AC 135 ms
54,336 KB
testcase_55 AC 163 ms
54,352 KB
testcase_56 AC 164 ms
54,132 KB
testcase_57 AC 159 ms
54,384 KB
testcase_58 AC 154 ms
54,324 KB
testcase_59 AC 159 ms
54,408 KB
testcase_60 AC 156 ms
53,972 KB
testcase_61 AC 158 ms
54,280 KB
testcase_62 AC 158 ms
54,476 KB
testcase_63 AC 148 ms
54,064 KB
testcase_64 AC 163 ms
54,196 KB
testcase_65 AC 162 ms
54,168 KB
testcase_66 AC 163 ms
54,264 KB
testcase_67 AC 161 ms
53,972 KB
testcase_68 AC 161 ms
54,028 KB
testcase_69 AC 162 ms
54,352 KB
testcase_70 AC 165 ms
53,820 KB
testcase_71 AC 161 ms
53,968 KB
testcase_72 AC 159 ms
53,740 KB
testcase_73 AC 164 ms
54,320 KB
testcase_74 AC 159 ms
53,932 KB
testcase_75 AC 161 ms
54,088 KB
testcase_76 AC 136 ms
53,912 KB
testcase_77 AC 135 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder634 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		Set<Integer> tr = new HashSet<>();
		for (int i = 1; i * (i + 1) / 2 <= n; i++) {
			int tmp = i * (i + 1) / 2;
			tr.add(tmp);
		}

		if (tr.contains(n)) {
			pr.println(1);
		} else {
			for (int e : tr) {
				if (tr.contains(n - e)) {
					pr.println(2);
					return;
				}
			}
			pr.println(3);
		}

	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0