結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー anago-pieanago-pie
提出日時 2024-02-27 19:26:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 625 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 1,708 ms
コンパイル使用メモリ 169,588 KB
実行使用メモリ 7,032 KB
最終ジャッジ日時 2024-02-27 19:26:28
合計ジャッジ時間 9,276 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 481 ms
6,676 KB
testcase_02 AC 506 ms
6,676 KB
testcase_03 AC 476 ms
6,676 KB
testcase_04 AC 478 ms
6,676 KB
testcase_05 AC 595 ms
6,676 KB
testcase_06 AC 625 ms
6,676 KB
testcase_07 AC 32 ms
6,676 KB
testcase_08 AC 32 ms
6,676 KB
testcase_09 AC 8 ms
6,676 KB
testcase_10 AC 8 ms
6,676 KB
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 25 ms
6,676 KB
testcase_14 AC 24 ms
6,676 KB
testcase_15 AC 24 ms
6,676 KB
testcase_16 AC 25 ms
6,676 KB
testcase_17 AC 25 ms
6,676 KB
testcase_18 AC 24 ms
6,676 KB
testcase_19 AC 25 ms
6,676 KB
testcase_20 AC 24 ms
6,956 KB
testcase_21 AC 25 ms
6,676 KB
testcase_22 AC 25 ms
6,676 KB
testcase_23 AC 24 ms
7,032 KB
testcase_24 AC 24 ms
7,032 KB
testcase_25 AC 24 ms
7,032 KB
testcase_26 AC 24 ms
7,032 KB
testcase_27 AC 24 ms
7,032 KB
testcase_28 AC 24 ms
7,032 KB
testcase_29 AC 25 ms
7,032 KB
testcase_30 AC 24 ms
7,032 KB
testcase_31 AC 24 ms
7,032 KB
testcase_32 AC 24 ms
7,032 KB
testcase_33 AC 24 ms
7,032 KB
testcase_34 AC 441 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0; i<n; i++)
#define debug 0
#define YES cout << "Yes" << endl;
#define NO cout << "No" << endl;
using ll = long long;
using ld = long double;
const int mod = 998244353;
const int MOD = 1000000007;
const double pi = atan2(0, -1);
#include <time.h>
#include <chrono>

int main() {
	int T;
	cin >> T;
	rep(test, T) {
		string n;
		ll M;
		cin >> n >> M;
		int k = n.size();
		ll N = 0;
		vector<ll> ten(k);
		ten[0] = 1;
		ll m = M;
		if (M % 2 == 0) {
			m *= 2;
		}
		rep(i, k - 1) {
			ten[i + 1] = ten[i] * 10;
			ten[i + 1] %= m;
		}
		rep(i, k) {
			N += (ll)(n[i] - '0') * ten[k - 1 - i];
			N %= m;
		}
		cout << N * (N + 1) / 2 % M << endl;
	}
}
0