結果
問題 | No.201 yukicoderじゃんけん |
ユーザー |
![]() |
提出日時 | 2016-05-03 23:05:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-05 06:04:48 |
合計ジャッジ時間 | 1,360 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 RE * 5 |
ソースコード
f = lambda x: int(x) if x.isdigit() else x sa = list(map(f, input().split()))[:2] sb = list(map(f, input().split()))[:2] print(-1) if sa[1] == sb[1] else print([sa[0], sb[0]][sa[1] < sb[1]])