結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
syunsuke
|
| 提出日時 | 2019-09-11 22:38:55 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 139 bytes |
| 記録 | |
| コンパイル時間 | 557 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 20,764 KB |
| 最終ジャッジ日時 | 2026-03-24 00:55:06 |
| 合計ジャッジ時間 | 3,706 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
A,B,C=list(input().split())
a,b,c=list(input().split())
if int(B)>int(b):
print(A)
elif int(B)<int(b):
print(a)
else:
print(-1)
syunsuke