結果

問題 No.2324 Two Countries within UEC
ユーザー sherringfordsherringford
提出日時 2023-05-28 14:22:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 5,030 ms
コンパイル使用メモリ 204,956 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-12-27 00:51:20
合計ジャッジ時間 64,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 TLE -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 WA -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 4 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#define ll long long
#define all(x) x.begin(),x.end() //vector
#define rep(i,n) for(ll i=0; i<n; ++i)
#define REP(i,n) for(ll i=1; i<=n; ++i)
#define Rep(i,s,n) for(ll i=s; i<n; ++i)
using namespace std;
 
//入力はすべて正とする
//素数判定
bool is_prime (ll n){
    for (ll i=2; i*i<=n; i++){
        if (n%i==0) return false;
    }
    return true;
}

unsigned GetDigit(unsigned num){
	return std::to_string(num).length();
}

string toBinary(int n){
    string r;
    while (n!=0){
        r+=(n%2==0?"0":"1");
        n/=2;
    }
    return r;
}

//vector<vector<int>> a(h, vector<int>(w));
/*
  int n;
  cin >> n;
  int a[n];
  rep(i,n){
    cin >> a[i];
  }
*/
 
int main(){
	int n,m,p,q;
	cin >> n >> m >> p >> q;
	vector<vector<int>> a(q, vector<int>(2));
	rep(i,q){
		rep(j,2){
			cin >> a[i][j];
		}
	}
	rep(i,q){
		int ans=0;
		rep(j,m){
			rep(k,n*m/p+1){
			    if (a[i][0]*(j+1)==a[i][1]+p*k){
				    ans++;
			    }
			}
		}
		cout << ans << endl;
	}
}
0