| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75912 | sh25_shenpy | 凑数 | C++ | Wrong Answer | 0 MS | 248 KB | 167 | 2025-12-11 21:18:50 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,s; cin>>n; s=int(1.0*n/3); cout<<int(1.0*n/3)<<" "<<s<<" "<<n-2*s; return 0;}