結果
問題 | No.201 yukicoderじゃんけん |
ユーザー |
![]() |
提出日時 | 2015-09-06 08:20:43 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 181 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-19 04:19:00 |
合計ジャッジ時間 | 1,267 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 RE * 5 |
ソースコード
L = list(map(str, input().split()))M = list(map(str, input().split()))if int(L[1]) == int(M[1]):print('-1')elif int(L[1]) > int(M[1]):print(L[0])else:print(M[0])