結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2019-04-14 19:01:02 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 895 bytes |
| コンパイル時間 | 733 ms |
| コンパイル使用メモリ | 28,544 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-19 07:31:07 |
| 合計ジャッジ時間 | 1,520 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
コンパイルメッセージ
main.c: In function 'ins':
main.c:8:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration]
8 | #define gc() getchar_unlocked()
| ^~~~~~~~~~~~~~~~
main.c:18:17: note: in expansion of macro 'gc'
18 | do *s = gc();
| ^~
main.c: In function 'outs':
main.c:9:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration]
9 | #define pc(c) putchar_unlocked(c)
| ^~~~~~~~~~~~~~~~
main.c:24:33: note: in expansion of macro 'pc'
24 | void outs(char *s) { while (*s) pc(*s++); }
| ^~
ソースコード
// 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;
}
bal4u