Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
56934 陈万瑄 排队买票 C++ 通过 100 0 MS 260 KB 195 2022-08-03 17:03:20

Tests(9/9):


#include<bits/stdc++.h> using namespace std; int n,res=1; string a[30]; int main(){ cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; if(a[i]!=a[i-1]) res++; } cout<<res; return 0; }


测评信息: