Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
431673 方相宜 【C1-9】乘车费用 C++ 通过 100 6 MS 240 KB 166 2026-03-08 19:54:23

Tests(3/3):


#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n<=3){ cout<<14; }else{ cout<<int(14+((n-3)*2.3)); } return 0; }


测评信息: