結果

問題 No.201 yukicoderじゃんけん
ユーザー tatt61880tatt61880
提出日時 2020-04-25 10:54:05
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 145,724 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 10:48:06
合計ジャッジ時間 2,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
out.cpp:1813:1: warning: non-void function does not return a value in all control paths [-Wreturn-type]
}
^
1 warning generated.

ソースコード

diff #

func main()
	var sa: []char :: cui@inputStr()
	var pa: []char :: cui@inputStr()
	do cui@inputStr()
	var sb: []char :: cui@inputStr()
	var pb: []char :: cui@inputStr()
	
	var ans: []char :: "-1"
	var res: int :: f(pa, pb)
	if(res > 0)
		do ans :: sa
	elif(res < 0)
		do ans :: sb
	end if
	do cui@print("\{ans}\n")
	
	func f(pa: []char, pb: []char): int
		if(^pa <> ^pb)
			ret ^ pa - ^pb
		end if
		for i(0, ^pa - 1)
			if(pa[i] $ int <> pb[i] $ int)
				ret pa[i] $ int - pb[i] $ int
			end if
		end for
	end func
end func
0