結果

問題 No.150 "良問"(良問とは言っていない
ユーザー tatt61880tatt61880
提出日時 2019-03-31 05:32:27
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 146,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 10:02:56
合計ジャッジ時間 3,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

func main()
	var T: int :: cui@input().toInt(&)
	for(1, T)
		var ans: int :: 11
		var S: []char :: cui@input()
		for i(0, ^S - 8)
			for j(i + 1, ^S - 7)
				do ans :: [ans, f(i, j, S)].min()
			end for
		end for
		do cui@print("\{ans}\n")
	end for
	func f(i: int, j: int, s: []char): int
		var res: int :: 0
		for ii(0, 3)
			do res :+ s[i + ii] <> "good"[ii] ?(1, 0)
		end for
		for ii(0, 6)
			do res :+ s[j + ii] <> "problem"[ii] ?(1, 0)
		end for
		ret res
	end func
end func
0