結果

問題 No.91 赤、緑、青の石
ユーザー kanpurin002kanpurin002
提出日時 2018-11-15 17:57:29
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 27,648 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-26 01:21:45
合計ジャッジ時間 2,310 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
4,376 KB
testcase_01 AC 6 ms
4,380 KB
testcase_02 AC 6 ms
4,380 KB
testcase_03 AC 8 ms
4,376 KB
testcase_04 AC 5 ms
4,380 KB
testcase_05 AC 7 ms
4,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 0 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 0 ms
4,376 KB
testcase_11 AC 3 ms
4,380 KB
testcase_12 AC 8 ms
4,376 KB
testcase_13 AC 8 ms
4,376 KB
testcase_14 AC 6 ms
4,376 KB
testcase_15 AC 9 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 0 ms
4,380 KB
testcase_18 AC 0 ms
4,380 KB
testcase_19 AC 0 ms
4,376 KB
testcase_20 AC 0 ms
4,380 KB
testcase_21 AC 0 ms
4,376 KB
testcase_22 AC 0 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 0 ms
4,376 KB
testcase_25 AC 13 ms
4,376 KB
testcase_26 AC 13 ms
4,376 KB
testcase_27 AC 1 ms
4,384 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 9 ms
4,384 KB
testcase_31 AC 13 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main() {
	int r,g,b,min,max,count=0;
	scanf("%d%d%d",&r,&g,&b);
	min=r>g?(g>b?b:g):(r>b?b:r);
	r-=min;g-=min;b-=min;count+=min;
	do {
		max=r<g?(g<b?b:g):(r<b?b:r);
		if (max>=3) {
			if (r<g) {
				if (g<b) b-=2;
				else g-=2;
			} else {
				if (r<b) b-=2;
				else r-=2;
			}
			if (r>g) {
				if (g>b) b+=1;
				else g+=1;
			} else {
				if (r>b) b+=1;
				else r+=1;
			}
			r-=1;g-=1;b-=1;count+=1;
		}
	} while (max>=3);
	printf("%d\n",count);
    return 0;
}
0