4 条题解

  • 1
    @ 2024-9-29 23:33:28
    #include <iostream>
    #include <string>
    using namespace std;
    int main(){
    	string a,b;
    	cin >> a >> b;
    	if(a < b)cout << "YES";
    	else cout << "NO";
    	return 0;
    }
    

    信息

    ID
    38
    时间
    1000ms
    内存
    128MiB
    难度
    9
    标签
    递交数
    4405
    已通过
    463
    上传者