結果

問題 No.201 yukicoderじゃんけん
コンテスト
ユーザー bal4u
提出日時 2019-04-14 19:01:02
言語 C(gnu17)
(gcc 15.2.0)
コンパイル:
gcc-15 -O2 -std=gnu17 -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 895 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 201 ms
コンパイル使用メモリ 37,376 KB
最終ジャッジ日時 2026-02-22 02:57:50
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

// yukicoder: No.201 yukicoderじゃんけん
// 2019.4.14 bal4u

#include <stdio.h>

//// 高速入力
#if 1
#define gc() getchar_unlocked()
#define pc(c) putchar_unlocked(c)
#else
#define gc() getchar()
#define pc(c) putchar(c)
#endif

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

void outs(char *s) { while (*s) pc(*s++); }

char Sa[105], Sb[105];
char Pa[10005], Pb[10005]; int Wa, Wb;
char Xa[10], Xb[10];

int cmp(int w1, char *s1, int w2, char *s2)
{
	if (w1 != w2) return w1 - w2;
	while (*s1) {
		if (*s1 != *s2) return *s1 - *s2;
		s1++, s2++;
	}
	return 0;
}

int main()
{
	int t;

	ins(Sa), Wa = ins(Pa), ins(Xa);
	ins(Sb), Wb = ins(Pb), ins(Xb);
	if ((t = cmp(Wa, Pa, Wb, Pb)) == 0) outs("-1");
	else if (t > 0) outs(Sa);
	else outs(Sb);
	pc('\n');
	return 0;
}
0