結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ks2mks2m
提出日時 2024-02-23 21:38:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 69,272 KB
最終ジャッジ日時 2024-09-29 05:52:25
合計ジャッジ時間 12,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,520 KB
testcase_01 AC 530 ms
65,636 KB
testcase_02 AC 561 ms
65,748 KB
testcase_03 AC 532 ms
65,872 KB
testcase_04 AC 526 ms
65,692 KB
testcase_05 AC 734 ms
69,272 KB
testcase_06 AC 744 ms
65,772 KB
testcase_07 AC 164 ms
55,692 KB
testcase_08 AC 168 ms
55,488 KB
testcase_09 AC 123 ms
53,108 KB
testcase_10 AC 121 ms
53,124 KB
testcase_11 AC 50 ms
50,140 KB
testcase_12 AC 50 ms
50,392 KB
testcase_13 AC 106 ms
54,216 KB
testcase_14 AC 117 ms
54,052 KB
testcase_15 AC 113 ms
54,012 KB
testcase_16 AC 117 ms
54,120 KB
testcase_17 AC 118 ms
53,964 KB
testcase_18 AC 117 ms
53,864 KB
testcase_19 AC 118 ms
54,048 KB
testcase_20 AC 104 ms
53,920 KB
testcase_21 AC 112 ms
54,112 KB
testcase_22 AC 110 ms
53,996 KB
testcase_23 AC 115 ms
53,960 KB
testcase_24 AC 116 ms
53,836 KB
testcase_25 AC 112 ms
53,800 KB
testcase_26 AC 113 ms
53,928 KB
testcase_27 AC 114 ms
53,980 KB
testcase_28 AC 116 ms
53,808 KB
testcase_29 AC 112 ms
53,876 KB
testcase_30 AC 120 ms
54,084 KB
testcase_31 AC 115 ms
53,912 KB
testcase_32 AC 113 ms
53,872 KB
testcase_33 AC 117 ms
53,880 KB
testcase_34 AC 500 ms
64,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			String[] sa = br.readLine().split(" ");
			char[] n = sa[0].toCharArray();
			int m = Integer.parseInt(sa[1]);
			int m2 = m * 2;

			long v1 = 0;
			for (int i = 0; i < n.length; i++) {
				v1 *= 10;
				v1 += n[i] - '0';
				v1 %= m2;
			}
			long ans = v1 * (v1 + 1) / 2 % m;
			pw.println(ans);
		}
		pw.flush();
		br.close();
	}
}
0