/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 532.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

string special = "!@#$%^&*()";

void solve(int T) {
	 string s; cin >> s;
	 int flag = 0;
	 if(s.length() >= 8) flag |= (1 << 0);
	 for(auto c : s) {
	 	if(c <= 'z' && c > 'a') flag |= (1 << 1);
		if(c <= 'Z' && c > 'A') flag |= (1 << 2);
		if(c <= '9' && c >= '0') flag |= (1 << 3);
		if(special.find(c) != string::npos) flag |= (1 << 4);
	 }

	 cout << ((flag == 31) ? "valid\n" : "invalid\n");
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
#ifdef MYPC
	cout << "==== OUTPUT ====\n";
#endif
	int t; cin >> t;
	for(int i = 1; i <= t; i++) {
		solve(i);
	}
}

Information

Submit By
Type
Submission
Problem
P1007 Password Checker
Language
C++17 (G++ 13.2.0)
Submit At
2025-02-17 14:09:25
Judged At
2025-02-17 14:09:25
Judged By
Score
100
Total Time
2ms
Peak Memory
532.0 KiB