Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
82431 sh25_shenpy 202503GESP二级01 C++ 无测评数据 0 MS 0 KB 242 2026-01-13 12:07:11

Tests(0/0):


#include <bits/stdc++.h> using namespace std; int main( ) { int n,x; cin>>n; for(int i=1;i<=n;++i){ cin>>x; if(x%10<=4) cout<<10*(x/10)<<endl; else cout<<10*(x/10+1)<<endl; } return 0; }