結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | Yang33 |
提出日時 | 2016-01-04 17:32:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 517 ms |
コンパイル使用メモリ | 55,752 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 11:12:37 |
合計ジャッジ時間 | 1,080 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include<iostream> #include<string.h> using namespace std; int main(void) { int i, j, len1, len2; char name1[100], name2[100], te1[1], te2[1]; char p1[10000], p2[10000]; cin >> name1 >> p1 >> te1; cin >> name2 >> p2 >> te2; len1 = strlen(p1); len2 = strlen(p2); if (len1 > len2)cout << name1; else if (len1 < len2)cout << name2; else { for (i = 0; i < len1; i++) { if (p1[i] > p2[i]) { cout << name1; break; } else if (p1[i] < p2[i]) { cout << name2; break; } else continue; } if (i == len1)cout << -1; } return 0; }