結果

問題 No.161 制限ジャンケン
ユーザー bal4ubal4u
提出日時 2019-06-02 16:33:42
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 999 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 29,700 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 23:03:47
合計ジャッジ時間 1,089 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 1 ms
4,348 KB
testcase_12 AC 1 ms
4,348 KB
testcase_13 AC 1 ms
4,348 KB
testcase_14 AC 1 ms
4,348 KB
testcase_15 AC 1 ms
4,348 KB
testcase_16 AC 1 ms
4,348 KB
testcase_17 AC 1 ms
4,348 KB
testcase_18 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'in':
main.c:7:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
    7 | #define gc() getchar_unlocked()
      |              ^~~~~~~~~~~~~~~~
main.c:14:24: note: in expansion of macro 'gc'
   14 |         int n = 0, c = gc();
      |                        ^~

ソースコード

diff #

// yukicoder: 161 制限ジャンケン
// 2019.6.2 bal4u

#include <stdio.h>

#if 1
#define gc() getchar_unlocked()
#else
#define gc() getchar()
#endif

int in()    // 非負整数の入力
{
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

void ins(char *s)  // 文字列の入力 スペース以下の文字で入力終了
{
	do *s = gc();
	while (*s++ > ' ');
	*(s-1) = 0;
}

#define MIN(a,b)  ((a)<=(b)?(a):(b))
char S[305];

int main()
{
	int G, C, P, g, c, p, ans;
	char *q;
	
	G = in(), C = in(), P = in();
	ins(q = S);
	g = c = p = 0;
	while (*q) {
		if (*q == 'G') g++;
		else if (*q == 'C') c++;
		else p++;
		q++;
	}
	ans = 0;
	if (G >= c) ans += c, G -= c, c = 0;
	else        ans += G, c -= G, G = 0;
	if (C >= p) ans += p, C -= p, p = 0;
	else        ans += C, p -= C, C = 0;
	if (P >= g) ans += g, P -= g, g = 0;
	else        ans += P, g -= P, P = 0;
	ans *= 3;
	ans += MIN(G, g) + MIN(C, c) + MIN(P, p);
	printf("%d\n", ans);
	return 0;
}
0