結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-10 21:06:18 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 255 bytes |
| コンパイル時間 | 573 ms |
| コンパイル使用メモリ | 55,804 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-15 07:42:34 |
| 合計ジャッジ時間 | 1,264 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#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=p;cout<<a;}