結果

問題 No.634 硬貨の枚数1
ユーザー aaaa3215aaaa3215
提出日時 2018-05-10 23:45:08
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 576 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 29,056 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-28 03:31:33
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 1 ms
6,940 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 1 ms
6,940 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 1 ms
6,944 KB
testcase_12 RE -
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 24 ms
6,940 KB
testcase_15 AC 30 ms
6,944 KB
testcase_16 AC 29 ms
6,940 KB
testcase_17 AC 30 ms
6,940 KB
testcase_18 AC 31 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 30 ms
6,944 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 29 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 29 ms
6,944 KB
testcase_36 AC 30 ms
6,944 KB
testcase_37 AC 30 ms
6,940 KB
testcase_38 AC 22 ms
6,940 KB
testcase_39 AC 30 ms
6,940 KB
testcase_40 AC 31 ms
6,940 KB
testcase_41 AC 29 ms
6,940 KB
testcase_42 AC 30 ms
6,940 KB
testcase_43 AC 29 ms
6,940 KB
testcase_44 RE -
testcase_45 AC 1 ms
6,944 KB
testcase_46 RE -
testcase_47 WA -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 29 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 RE -
testcase_53 AC 1 ms
6,948 KB
testcase_54 AC 1 ms
6,944 KB
testcase_55 AC 30 ms
6,940 KB
testcase_56 AC 29 ms
6,940 KB
testcase_57 AC 31 ms
6,944 KB
testcase_58 AC 29 ms
6,944 KB
testcase_59 AC 31 ms
6,940 KB
testcase_60 AC 29 ms
6,940 KB
testcase_61 AC 30 ms
6,940 KB
testcase_62 AC 31 ms
6,940 KB
testcase_63 AC 29 ms
6,940 KB
testcase_64 AC 30 ms
6,940 KB
testcase_65 AC 31 ms
6,944 KB
testcase_66 AC 30 ms
6,948 KB
testcase_67 AC 32 ms
6,940 KB
testcase_68 AC 29 ms
6,944 KB
testcase_69 AC 29 ms
6,940 KB
testcase_70 AC 31 ms
6,940 KB
testcase_71 AC 29 ms
6,940 KB
testcase_72 AC 29 ms
6,940 KB
testcase_73 AC 29 ms
6,940 KB
testcase_74 AC 30 ms
6,940 KB
testcase_75 AC 29 ms
6,944 KB
testcase_76 AC 1 ms
6,940 KB
testcase_77 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int sankaku(int k) {
	int num = k * (k + 1) / 2;
	return num;
}

int main(void) {
	int N;
	int tri[10000];
	int k = 0;
	int m = 0;

	scanf("%d", &N);

	tri[0] = 0;
	for (int j = 1; tri[j-1] < 1000000; j++) {
		tri[j] = sankaku(j);
	}

	//1つか2つの三角数のどちらであるかを判定
	do{
		k++;
		if (N == tri[k]) {
			printf("1\n");
			return 1;
		}

		m = k - 1;
		do{
			m++;
			if (N == tri[k] + tri[m]) {
				printf("2\n");
				return 2;
			}

		} while (N > tri[k] + tri[m]);
				
	} while (N > tri[k]);

	printf("3\n");

	return 0;

}
0