/ SeriousOJ /

Record Detail

Accepted


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

Code

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

#ifdef LOCAL
#include "debug.h"
#else
#define dbg(...)
#endif

void solve() {    
    int x,y;
    cin >> x >> y;

    if(x==1 || y == 1) cout << -1 << endl;
	for(int i=1;i<=100;i++){
		if(i%x !=0 && i%y!=0){
			cout << i << endl;
			return;
		}
	}

}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int t; cin >> t;while (t--)
    solve();
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1235 A. Valid Integer
Contest
Happy New Year 2026
Language
C++17 (G++ 13.2.0)
Submit At
2026-01-06 14:38:13
Judged At
2026-01-06 14:38:14
Judged By
Score
100
Total Time
10ms
Peak Memory
532.0 KiB