結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
takakin
|
| 提出日時 | 2020-03-31 16:36:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 208 bytes |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-24 20:04:28 |
| 合計ジャッジ時間 | 1,526 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() sa,pa,xa=map(str,input().split()) sb,pb,xb=map(str,input().split()) if int(pa)==int(pb): print(-1) elif int(pa)>int(pb): print(sa) else: print(sb)
takakin