結果

問題 No.293 4>7の世界
ユーザー 184184
提出日時 2015-10-23 22:37:17
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 34,140 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-23 01:28:11
合計ジャッジ時間 1,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 1 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,948 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 0 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:39: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         char a[100001],b[100001];scanf("%s%s",a,b);
      |                                  ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
//namaega184
int main(){
	char a[100001],b[100001];scanf("%s%s",a,b); 
	int la=strlen(a),lb=strlen(b);
	if(la<lb){a:printf("%s\n",b);return 0;}
	else if(la>lb){b:printf("%s\n",a);return 0;}
	else{
		for(int i=0;i<la;i++){
			if(a[i]<b[i])goto b;
			else if(a[i]>b[i])goto a;
		}
	}
	printf("-1\n");
	return 0;
}
0