結果
問題 |
No.201 yukicoderじゃんけん
|
ユーザー |
|
提出日時 | 2023-12-11 13:08:11 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 201 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-09-27 04:29:22 |
合計ジャッジ時間 | 1,434 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 20 |
ソースコード
sys.set_int_max_str_digits(1000000) S_A, P_A, X_A = input().split() S_B, P_B, X_B = input().split() if(int(P_A) > int(P_B)): print(S_A) elif(int(P_A) < int(P_B)): print(S_B) else: print(-1)