| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 73186 | sh25_shenpy | 利剑与坚盾 | C++ | 通过 | 0 MS | 248 KB | 242 | 2025-11-07 18:09:28 |
#include <bits/stdc++.h> using namespace std; int main( ) { int a,b; cin>>a; cin>>b; if(a/b>=1.2) cout<<"青龙"; else if(a/b<0.8) cout<<"玄武"; else cout<<"白虎"; return 0; }