| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1610 | A班-过懿萱 | 山形数 | C++ | Accepted | 100 | 1 MS | 256 KB | 312 | 2024-12-07 11:00:59 |
#include <bits/stdc++.h> using namespace std; int main() { for(int i = 100;i <= 999;i++) { int bai,shi,ge; bai = i / 100; shi = i / 10 % 10; ge = i % 10; if(bai < shi && ge < shi) { cout<<i<<endl; } } return 0; }