結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
yaoshimax
|
| 提出日時 | 2015-05-21 00:06:09 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 83 ms / 5,000 ms |
| コード長 | 145 bytes |
| 記録 | |
| コンパイル時間 | 125 ms |
| コンパイル使用メモリ | 77,628 KB |
| 最終ジャッジ日時 | 2025-12-03 15:12:21 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
S1,P1,X1=raw_input().split()
S2,P2,X2=raw_input().split()
if int(P1)<int(P2):
print S2
elif int(P1)>int(P2):
print S1
else:
print -1
yaoshimax