結果
問題 |
No.201 yukicoderじゃんけん
|
ユーザー |
![]() |
提出日時 | 2024-08-15 11:49:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 149 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-08-15 11:49:38 |
合計ジャッジ時間 | 1,835 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 RE * 5 |
ソースコード
SA,PA,XA = input().split(' ') SB,PB,XB = input().split(' ') ans = [SA,SB,'-1'][0 if int(PA) > int(PB) else 1 if int(PA) < int(PB) else 2] print(ans)