結果
問題 |
No.201 yukicoderじゃんけん
|
ユーザー |
|
提出日時 | 2015-12-10 20:59:38 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 460 ms |
コンパイル使用メモリ | 57,056 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-15 07:42:25 |
合計ジャッジ時間 | 1,159 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 WA * 2 |
ソースコード
#include<iostream> #include<string> using namespace std;int main(){string q,b,p,d,a="-1";cin>>q>>b>>p>>p>>d;int g=b.size(),h=d.size(),i;if(g>h)a=q;else if(g==h){for(i=0;i<g;i++){if(b[i]>d[i]){a=q;break;}else if(b[i]<d[i]){a=p;break;}}}else a=d;cout<<a;}