結果

問題 No.201 yukicoderじゃんけん
ユーザー MamonboMamonbo
提出日時 2015-06-30 23:55:29
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 342 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 10,572 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2023-09-22 04:45:46
合計ジャッジ時間 1,413 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,740 KB
testcase_01 AC 16 ms
7,860 KB
testcase_02 AC 16 ms
7,800 KB
testcase_03 AC 16 ms
7,740 KB
testcase_04 AC 16 ms
7,780 KB
testcase_05 AC 17 ms
7,904 KB
testcase_06 AC 16 ms
7,756 KB
testcase_07 AC 17 ms
7,828 KB
testcase_08 AC 16 ms
7,780 KB
testcase_09 AC 16 ms
7,740 KB
testcase_10 AC 16 ms
7,900 KB
testcase_11 AC 16 ms
7,804 KB
testcase_12 AC 16 ms
7,840 KB
testcase_13 AC 16 ms
7,792 KB
testcase_14 AC 16 ms
7,828 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding=UTF-8
#my 1st python code using dvorak

name=list(range(0,2,1))
yuru=list(range(0,2,1))

mojir=input()
hyo=mojir.split(" ")

name[0]=hyo[0]
yuru[0]=int(hyo[1])

mojir=input()
hyo=mojir.split(" ")

name[1]=hyo[0]
yuru[1]=int(hyo[1])

if yuru[0]>yuru[1]:
    print(name[0])
elif yuru[0]<yuru[1]:
    print(name[1])
else:
    print("-1")
0