結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | cympfh |
提出日時 | 2015-05-10 23:54:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,389 bytes |
コンパイル時間 | 1,294 ms |
コンパイル使用メモリ | 161,748 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-05 22:09:02 |
合計ジャッジ時間 | 1,730 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | WA | - |
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 | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<(n);++i) #define loop for(;;) #define trace(var) cerr<<">>> "<<#var<<" = "<<var<<endl; #define inf (1e9) #define eps (1e-9) using Integer = long long; using Real = long double; const Real PI = acos(-1); template<class S, class T> inline ostream& operator<<(ostream&os, pair<S,T> p) { return os << '(' << p.first << ", " << p.second << ')'; } template<class S, class T, class U> inline ostream& operator<<(ostream&os, tuple<S,T,U> t) { return os << '(' << get<0>(t) << ", " << get<1>(t) << ", " << get<2>(t) << ')'; } template<class T> inline ostream& operator<<(ostream&os, vector<T> v) { if (v.size() == 0) { return os << "(empty)"; } os << v[0]; for (int i=1, len=v.size(); i<len; ++i) os << ' ' << v[i]; return os; } template<class T> inline istream& operator>>(istream&is, vector<T>&v) { rep (i, v.size()) is >> v[i]; return is; } int dx[] = { -1, 0, 1, 0 }; int dy[] = { 0, -1, 0, 1 }; using vi = vector<int>; using vvi = vector<vi>; int main() { cin.tie(0); ios::sync_with_stdio(0); cout.setf(ios::fixed); cout.precision(10); random_device dev; mt19937 rand(dev()); string na, nb; string a, b, g; cin >> na >> a >> g; cin >> nb >> b >> g; if (a == b) { cout << -1 << endl; } else { cout << (a > b ? na : nb) << endl; } return 0; }