| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75695 | sh25_zhuwy | 利剑与坚盾 | C++ | Accepted | 0 MS | 248 KB | 282 | 2025-12-09 14:48:03 |
#include<bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; double k=a/b; if(k>=1.2) { cout<<"青龙"; } else if(k<0.8) { cout<<"玄武"; } else { cout<<"白虎"; } return 0; }