結果

問題 No.745 letinopia raoha
ユーザー 👑 tatt61880tatt61880
提出日時 2019-03-21 19:23:19
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 481 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 158,040 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-14 15:32:20
合計ジャッジ時間 2,741 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

func main()
	var _: [][]char :: cui@input().split(" ")
	var A: int :: _[0].toInt(&)
	var B: int :: _[1].toInt(&)
	var C: int :: _[2].toInt(&)
	var D: int :: _[3].toInt(&)
	if(D = 10)
		do cui@print("Impossible\n")
	end if
	var rate: int :: 1
	var combo: int :: 0
	var ans: int
	for i(1, B + A)
		do combo :+ 1
		if(combo > 100 & combo % 100 = 1)
			do rate :* 2
		end if
		do ans :+ (i <= B ?(50, 100)) * rate
	end for
	do cui@print("Possible\n")
	do cui@print("\{ans}\n")
end func
0