Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
443889 任晨熙 【C1-8】幸运数字 C++ 通过 100 1 MS 256 KB 235 2026-06-07 10:58:49

Tests(3/3):


#include <iostream> using namespace std; int main(){ int n; cin>>n; int s=n/10%10; int g=n/1%10; if((s==6||s==8)&&(g==6||g==8)){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }


测评信息: