結果

問題 No.2324 Two Countries within UEC
ユーザー taku-1227taku-1227
提出日時 2023-05-28 14:22:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 614 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 172,196 KB
実行使用メモリ 1,568,004 KB
最終ジャッジ日時 2024-12-27 00:49:36
合計ジャッジ時間 55,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main(){
	int N, M, P, Q;
  	int count = 0;
    cin >> N >> M >> P >> Q;
  	vector<vector<int>> data(Q, vector<int> (2));
  	vector<int> yakitori(M);
  	for(int i = 0; i < M; i++){
    yakitori.at(i) = i + 1;
    }
  	for(int i = 0; i < Q; i++){
    for(int j = 0; j < 2; j++){
    cin >> data.at(i).at(j);
    }
    }
  	for(int i = 0; i < Q; i++){
    for(int j = 0; j < 2; j++){
    for(int k = 0; k < M; k++){
    if((data.at(i).at(0) * yakitori.at(k)) % P == data.at(i).at(1)){
    count++;
    }
    }
    }
   	cout << count/2 << endl;
    count = 0;
    }
}
0