| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 85064 | sh25_shengmy | 利剑与坚盾 | C++ | Accepted | 0 MS | 236 KB | 250 | 2026-03-06 14:49:01 |
#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; }