結果

問題 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  
実行時間 593 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 1,614 ms
コンパイル使用メモリ 170,724 KB
実行使用メモリ 6,976 KB
最終ジャッジ日時 2024-09-29 12:08:36
合計ジャッジ時間 7,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 480 ms
5,248 KB
testcase_02 AC 492 ms
5,248 KB
testcase_03 AC 482 ms
5,248 KB
testcase_04 AC 472 ms
5,248 KB
testcase_05 AC 593 ms
5,248 KB
testcase_06 AC 584 ms
5,248 KB
testcase_07 AC 32 ms
5,248 KB
testcase_08 AC 32 ms
5,248 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 24 ms
5,324 KB
testcase_14 AC 24 ms
5,248 KB
testcase_15 AC 25 ms
5,248 KB
testcase_16 AC 25 ms
5,248 KB
testcase_17 AC 25 ms
6,208 KB
testcase_18 AC 25 ms
5,248 KB
testcase_19 AC 25 ms
5,672 KB
testcase_20 AC 24 ms
6,956 KB
testcase_21 AC 25 ms
6,084 KB
testcase_22 AC 24 ms
5,580 KB
testcase_23 AC 24 ms
6,972 KB
testcase_24 AC 24 ms
6,848 KB
testcase_25 AC 26 ms
6,852 KB
testcase_26 AC 24 ms
6,916 KB
testcase_27 AC 26 ms
6,844 KB
testcase_28 AC 24 ms
6,852 KB
testcase_29 AC 24 ms
6,968 KB
testcase_30 AC 25 ms
6,912 KB
testcase_31 AC 25 ms
6,852 KB
testcase_32 AC 25 ms
6,852 KB
testcase_33 AC 24 ms
6,976 KB
testcase_34 AC 442 ms
5,248 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