結果

問題 No.201 yukicoderじゃんけん
ユーザー yamaken1343yamaken1343
提出日時 2015-11-11 22:46:42
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 523 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-13 14:27:08
合計ジャッジ時間 789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%s%s%s",a,ap,x);
      |         ^~~~~~~~~~~~~~~~~~~~~~
main.c:9:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%s%s%s",b,bp,y);
      |         ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<string.h>
int main(void){
	char a[100],b[100];
	char x[10],y[10];
	char ap[100000],bp[100000];
	int a1,b1,i;
	scanf("%s%s%s",a,ap,x);
	scanf("%s%s%s",b,bp,y);
	
	a1 = strlen(ap);b1 = strlen(bp);
	
	if(a1 == b1){
		for(i=0;i<a1;i++){
			if(ap[i] > bp[i]){
				printf("%s\n",a); break;
			}else if(ap[i] < bp[i]){
				printf("%s\n",b); break;
			}else if(i == a1-1){
				printf("-1\n"); break;
			}
		}
	}else if(a1 > b1){
		printf("%s\n",a);
	}else if(b1 > a1){
		printf("%s\n",b);
	}
	return 0;
}
0