結果

問題 No.201 yukicoderじゃんけん
ユーザー kotatsugamekotatsugame
提出日時 2016-12-21 21:54:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 65,932 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 10:45:20
合計ジャッジ時間 1,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    3 | main(){
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
main(){
	string a,b,s,t,n;cin>>s>>a>>n>>t>>b>>n;
	bool f=true;
	if(a.size()<b.size())f=false;
	else if(a.size()==b.size())f=a>b;
	cout<<(f?a==b?"-1":s:t)<<endl;
}
0