feat(题目): 样例试运行放出「终端会话」,把输入是怎么喂进去的画给学生看
Some checks failed
Deploy / deploy (push) Has been cancelled

学生在自己电脑上跑,是「程序停下来等我敲、敲完回车再往下走」;判题狗这边输入
是提前备好、一口气喂进去的,屏幕上只剩对和错。这个落差是入门阶段最常见的困惑,
最痛的落地形态是:照着教程写了 printf("请输入温度:"),算得明明对却一直判错。

试运行时给代码套一层前导,程序每读到输入就原样回显到 stdout,用  包成标记。
回来的输出拆两次用:抠掉标记段是程序真正的输出(判定用,和不套前导时一字不差),
带标记渲染就是一份终端会话。支持 C / C++ / Python3,其余语言照旧直接跑。
只走样例试运行这条路,正式提交判题一个字都不加。

界面上蓝色是喂进去的输入,带虚线下划线的灰字是学生自己打的提示语(一段输出紧
跟着一段输入就是提示语)。把提示语抠掉正好等于期望输出时,把话说死:答案是对
的,删掉提示语就通过。

顺带:样例「测试」的结果不再 2 秒自动复位,按钮固定叫「测试」,通过 / 不通过挪
到旁边的 tag 上。

几个踩出来的坑记在代码注释里:C 不能攒够一行再回显(样例输入不带结尾换行,那个
换行永远等不到,回显会拖到退出时才发生,变成「答案在前、输入在后」);也不能按
字节回显(中文多字节会被标记撕碎);行号回退只能对编译错误全量做,stdout 里混着
学生自己打印的东西,printf("%4d | %s") 这种表格题一改就把人家的输出改错了。

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013rpSKCNpVcMhTFhw21YiL7
This commit is contained in:
2026-09-02 01:11:41 -06:00
parent bd84599174
commit 8cd4459964
2 changed files with 296 additions and 42 deletions

View File

@@ -5,6 +5,7 @@ import { storeToRefs } from "pinia"
import { useCodeStore } from "oj/store/code"
import { useProblemStore } from "oj/store/problem"
import { createTestSubmission } from "utils/judge"
import type { TranscriptSegment } from "utils/judge"
import { DIFFICULTY } from "utils/constants"
import type { Problem, ProblemStatus } from "utils/types"
import Copy from "shared/components/Copy.vue"
@@ -17,10 +18,19 @@ import SQLDataTable from "./SQLDataTable.vue"
type Sample = Problem["samples"][number] & {
id: number
msg: string
// 终端会话不支持回显的语言Java / Go / JS拿不到退回只显示 msg
segments: TranscriptSegment[] | null
status: ProblemStatus
loading: boolean
}
/** 会话里的一段在界面上怎么显示 */
type ShownSegment = {
text: string
// out = 程序真正的输出in = 喂进去的输入prompt = 学生自己打的提示语
kind: "out" | "in" | "prompt"
}
const theme = useThemeVars()
const style = computed(() => "color: " + theme.value.primaryColor)
const isDark = useDark()
@@ -92,6 +102,7 @@ const samples = ref<Sample[]>(
...sample,
id: index,
msg: "",
segments: null,
status: "not_test",
loading: false,
})),
@@ -127,6 +138,7 @@ async function test(sample: Sample, index: number) {
return {
...sample,
msg: res.output,
segments: res.segments,
status: status,
loading: false,
}
@@ -134,39 +146,79 @@ async function test(sample: Sample, index: number) {
return sample
}
})
const id = setTimeout(() => {
clearTimeout(id)
samples.value = samples.value.map((sample) => {
if (sample.id === index) {
return {
...sample,
msg: res.output,
status: "not_test",
loading: false,
}
} else {
return sample
}
})
}, 2000)
}
function label(status: ProblemStatus, loading: boolean) {
if (loading) return "测试中"
return {
not_test: "测试",
failed: "不通过",
passed: "通过",
}[status]
// 运行结果不再自动复位后,按钮固定叫「测试」——
// 一个绿色的「通过」按钮既当状态又当「再跑一次」的入口,容易误读,
// 通过 / 不通过挪到旁边的 tag 上
const STATUS_TAG = {
not_test: null,
failed: { label: "通过", type: "error" },
passed: { label: "通过", type: "success" },
} as const satisfies Record<
ProblemStatus,
{ label: string; type: string } | null
>
/**
* 一段输出后面紧跟着一段输入,说明它是「请输入半径:」这类提示语。学生在自己电脑上
* 跑,这句是打给自己看的;到了判题狗这里它一样算进 stdout是最常见的 WA 原因,
* 所以单独标出来。
*/
function shownSegments(sample: Sample): ShownSegment[] {
const segments = sample.segments
if (!segments) return [{ text: sample.msg, kind: "out" }]
return segments.map((seg, index) => ({
// 样例的输入大多不带结尾换行(库里就是 `"700"`),照原样贴出来,下一行输出会
// 和它挤在一起变成 `700` `7` → `7007`。学生真在终端里敲的话这里有个回车,
// 补上它才是他电脑上看到的样子 —— 只影响显示,判定用的是 msg。
text:
seg.kind === "input" && !seg.text.endsWith("\n")
? seg.text + "\n"
: seg.text,
kind:
seg.kind === "input"
? "in"
: segments[index + 1]?.kind === "input"
? "prompt"
: "out",
}))
}
function type(status: ProblemStatus) {
return {
not_test: "",
failed: "error",
passed: "success",
}[status] as "warning" | "error" | "success"
function hasFedInput(sample: Sample) {
return !!sample.segments?.some((seg) => seg.kind === "input")
}
/**
* 把提示语抠掉之后正好等于期望输出 —— 这时候能把话说死:答案是对的,删掉就通过。
* 抠掉还是对不上,就只说提示语也算输出,不误导。
*/
function hint(sample: Sample) {
if (sample.status !== "failed") return ""
const shown = shownSegments(sample)
if (!shown.some((seg) => seg.kind === "prompt")) return ""
const withoutPrompt = shown
.filter((seg) => seg.kind === "out")
.map((seg) => seg.text)
.join("")
if (withoutPrompt.trim() === sample.output.trim()) {
return "答案本身是对的,只是输出里多了带下划线的提示语 —— 判题狗只对比程序打印的结果,把 input() / printf() 里的提示语删掉就通过了。"
}
return "带下划线的是你自己打印的提示语,判题狗也会把它算进你的输出里。"
}
function segStyle(kind: ShownSegment["kind"]) {
if (kind === "in") {
return { color: theme.value.infoColor, fontWeight: 600 }
}
if (kind === "prompt") {
return {
color: theme.value.textColor3,
textDecoration: "underline dotted",
textUnderlineOffset: "3px",
}
}
return {}
}
</script>
@@ -311,7 +363,9 @@ function type(status: ProblemStatus) {
</p>
<n-list bordered style="margin-bottom: 8px">
<n-list-item v-for="(rule, i) in rules" :key="i">
<n-tag :type="KIND_TAG_TYPE[rule.kind]">{{ rule.description }}</n-tag>
<n-tag :type="KIND_TAG_TYPE[rule.kind]">
{{ rule.description }}
</n-tag>
</n-list-item>
</n-list>
</div>
@@ -328,11 +382,18 @@ function type(status: ProblemStatus) {
</p>
<n-button
size="small"
:type="type(sample.status)"
:loading="sample.loading"
@click="test(sample, index)"
>
{{ label(sample.status, sample.loading) }}
测试
</n-button>
<n-tag
v-if="STATUS_TAG[sample.status]"
size="small"
:type="STATUS_TAG[sample.status]!.type"
>
{{ STATUS_TAG[sample.status]!.label }}
</n-tag>
</n-flex>
<n-descriptions
bordered
@@ -357,8 +418,23 @@ function type(status: ProblemStatus) {
</template>
<div class="testcase">{{ sample.output }}</div>
</n-descriptions-item>
<n-descriptions-item label="运行结果" v-if="sample.msg">
<div class="testcase">{{ sample.msg }}</div>
<n-descriptions-item
label="运行过程"
v-if="sample.msg || sample.segments?.length"
>
<div class="terminal">
<span
v-for="(seg, i) of shownSegments(sample)"
:key="i"
:style="segStyle(seg.kind)"
>{{ seg.text }}</span
>
</div>
<p v-if="hasFedInput(sample)" class="terminalNote">
蓝色那几段是判题狗提前准备好自动喂给程序的输入
所以这里不用你敲键盘程序也不会停下来等
</p>
<p v-if="hint(sample)" class="terminalNote">{{ hint(sample) }}</p>
</n-descriptions-item>
</n-descriptions>
</div>
@@ -442,6 +518,20 @@ function type(status: ProblemStatus) {
font-family: "Monaco";
}
.terminal {
font-size: 14px;
white-space: pre-wrap;
word-break: break-all;
line-height: 1.7;
font-family: Monaco, Consolas, monospace;
}
.terminalNote {
font-size: 13px;
opacity: 0.75;
margin: 8px 0 0;
}
.status-alert {
margin-bottom: 16px;
}