結果

問題 No.634 硬貨の枚数1
ユーザー GrenacheGrenache
提出日時 2018-01-20 21:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 3,663 ms
コンパイル使用メモリ 79,484 KB
実行使用メモリ 96,448 KB
最終ジャッジ日時 2024-06-07 15:06:05
合計ジャッジ時間 30,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,408 KB
testcase_01 AC 136 ms
54,152 KB
testcase_02 AC 144 ms
54,068 KB
testcase_03 AC 140 ms
53,964 KB
testcase_04 AC 139 ms
54,144 KB
testcase_05 AC 140 ms
54,088 KB
testcase_06 AC 138 ms
54,196 KB
testcase_07 AC 140 ms
54,140 KB
testcase_08 AC 138 ms
53,780 KB
testcase_09 AC 140 ms
53,916 KB
testcase_10 AC 141 ms
54,260 KB
testcase_11 AC 140 ms
54,212 KB
testcase_12 AC 140 ms
54,296 KB
testcase_13 AC 136 ms
54,140 KB
testcase_14 AC 195 ms
58,092 KB
testcase_15 AC 497 ms
89,872 KB
testcase_16 AC 289 ms
71,520 KB
testcase_17 AC 311 ms
75,876 KB
testcase_18 AC 292 ms
71,688 KB
testcase_19 AC 459 ms
85,892 KB
testcase_20 AC 526 ms
92,592 KB
testcase_21 AC 555 ms
94,164 KB
testcase_22 AC 456 ms
90,020 KB
testcase_23 AC 270 ms
69,304 KB
testcase_24 AC 141 ms
54,016 KB
testcase_25 AC 134 ms
53,992 KB
testcase_26 AC 141 ms
54,380 KB
testcase_27 AC 137 ms
53,952 KB
testcase_28 AC 138 ms
54,136 KB
testcase_29 AC 139 ms
54,280 KB
testcase_30 AC 138 ms
54,264 KB
testcase_31 AC 138 ms
54,112 KB
testcase_32 AC 138 ms
53,924 KB
testcase_33 AC 139 ms
54,100 KB
testcase_34 AC 180 ms
56,264 KB
testcase_35 AC 236 ms
67,588 KB
testcase_36 AC 391 ms
80,012 KB
testcase_37 AC 300 ms
71,676 KB
testcase_38 AC 187 ms
58,340 KB
testcase_39 AC 479 ms
88,080 KB
testcase_40 AC 371 ms
77,712 KB
testcase_41 AC 342 ms
75,680 KB
testcase_42 AC 467 ms
87,724 KB
testcase_43 AC 282 ms
69,588 KB
testcase_44 AC 135 ms
54,144 KB
testcase_45 AC 165 ms
54,444 KB
testcase_46 AC 194 ms
58,440 KB
testcase_47 AC 579 ms
96,424 KB
testcase_48 AC 135 ms
54,100 KB
testcase_49 AC 193 ms
58,420 KB
testcase_50 AC 577 ms
96,448 KB
testcase_51 AC 190 ms
58,280 KB
testcase_52 AC 135 ms
54,224 KB
testcase_53 AC 134 ms
53,924 KB
testcase_54 AC 134 ms
54,160 KB
testcase_55 AC 551 ms
96,260 KB
testcase_56 AC 561 ms
96,232 KB
testcase_57 AC 565 ms
94,108 KB
testcase_58 AC 546 ms
94,272 KB
testcase_59 AC 551 ms
94,292 KB
testcase_60 AC 542 ms
94,116 KB
testcase_61 AC 544 ms
94,540 KB
testcase_62 AC 535 ms
94,240 KB
testcase_63 AC 556 ms
93,984 KB
testcase_64 AC 549 ms
94,172 KB
testcase_65 AC 542 ms
94,376 KB
testcase_66 AC 552 ms
96,228 KB
testcase_67 AC 548 ms
94,252 KB
testcase_68 AC 565 ms
94,120 KB
testcase_69 AC 562 ms
94,100 KB
testcase_70 AC 549 ms
94,320 KB
testcase_71 AC 543 ms
94,300 KB
testcase_72 AC 530 ms
94,424 KB
testcase_73 AC 533 ms
94,180 KB
testcase_74 AC 529 ms
94,160 KB
testcase_75 AC 530 ms
94,180 KB
testcase_76 AC 143 ms
53,944 KB
testcase_77 AC 208 ms
60,172 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();

		int[] tr = new int[n];
		Arrays.fill(tr, 3);

		List<Integer> trlist = new ArrayList<>();
		for (int i = 1; i * (i + 1) / 2 <= n; i++) {
			int tmp = i * (i + 1) / 2;
			tr[tmp - 1] = 1;
			trlist.add(tmp);
		}

//		pr.println(trlist.size());

		for (int i = 0, size = trlist.size(); i < size; i++) {
			for (int j = 0; j < size && trlist.get(i) + trlist.get(j) <= n; j++) {
				int tmp = trlist.get(i) + trlist.get(j);
				tr[tmp - 1] = Math.min(tr[tmp - 1], 2);
			}
		}

		pr.println(tr[n - 1]);
	}

	// ---------------------------------------------------
	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