| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46761 | sunhuifeng | 扑克牌 | C++ | Accepted | 0 MS | 252 KB | 141 | 2024-05-05 11:32:04 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n==4) cout<<4<<endl; else cout<<n/3+n%3<<endl; return 0; }