| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 441975 | 李铭泽 | 【C1-7】小童的噩梦 | C++ | 解答错误 | 33 | 1 MS | 248 KB | 185 | 2026-05-25 20:47:10 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,s; cin>>n; while(n){ s=s*10+n%10; n/=10; } if(s%9==0) cout<<"1"; else cout<<"0"; return 0; }