結果

問題 No.201 yukicoderじゃんけん
ユーザー 👑 tatt61880tatt61880
提出日時 2019-03-19 22:19:03
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 154,524 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-10-14 15:30:58
合計ジャッジ時間 3,517 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 3 ms
4,348 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var _: [][]char
	do _ :: cui@input().split(" ")
	var Sa: []char :: _[0]
	var Pa: int :: _[1].toInt(&)
	do _ :: cui@input().split(" ")
	var Sb: []char :: _[0]
	var Pb: int :: _[1].toInt(&)
	
	var ans: []char :: "-1"
	if(Pa > Pb)
		do ans :: Sa
	elif(Pa < Pb)
		do ans :: Sb
	end if
	do cui@print("\{ans}\n")
end func
0