結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
Justinlam33
|
| 提出日時 | 2017-04-12 14:29:41 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 136 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-18 10:19:50 |
| 合計ジャッジ時間 | 1,324 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
str=input() str1,p1,x1=str.split() str=input() str2,p2,x2=str.split() p1=int(p1) p2=int(p2) if (p1==p2): print(-1) elif(p1>p2): print(str1) else: print(str2)
Justinlam33