| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83611 | sh25_huangse | 利剑与坚盾 | C++ | Accepted | 0 MS | 240 KB | 250 | 2026-01-28 20:27:14 |
#include <bits/stdc++.h> using namespace std; int main( ) { int a,b; cin>>a; cin>>b; if(1.0*a/b>=1.2) cout<<"青龙"; else if(1.0*a/b<0.8) cout<<"玄武"; else cout<<"白虎"; return 0; }