結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー tentententen
提出日時 2024-02-29 15:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 752 ms / 2,000 ms
コード長 1,949 bytes
コンパイル時間 3,861 ms
コンパイル使用メモリ 89,320 KB
実行使用メモリ 81,828 KB
最終ジャッジ日時 2024-09-29 12:43:34
合計ジャッジ時間 15,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
51,048 KB
testcase_01 AC 650 ms
81,828 KB
testcase_02 AC 641 ms
81,436 KB
testcase_03 AC 637 ms
81,372 KB
testcase_04 AC 644 ms
81,656 KB
testcase_05 AC 752 ms
81,676 KB
testcase_06 AC 743 ms
81,544 KB
testcase_07 AC 180 ms
58,048 KB
testcase_08 AC 180 ms
59,460 KB
testcase_09 AC 128 ms
53,316 KB
testcase_10 AC 127 ms
53,108 KB
testcase_11 AC 74 ms
51,496 KB
testcase_12 AC 75 ms
51,408 KB
testcase_13 AC 176 ms
55,944 KB
testcase_14 AC 165 ms
55,844 KB
testcase_15 AC 174 ms
54,792 KB
testcase_16 AC 169 ms
55,860 KB
testcase_17 AC 170 ms
55,236 KB
testcase_18 AC 178 ms
55,768 KB
testcase_19 AC 173 ms
55,952 KB
testcase_20 AC 172 ms
55,652 KB
testcase_21 AC 164 ms
55,448 KB
testcase_22 AC 164 ms
55,884 KB
testcase_23 AC 168 ms
55,516 KB
testcase_24 AC 163 ms
55,532 KB
testcase_25 AC 177 ms
55,504 KB
testcase_26 AC 177 ms
55,612 KB
testcase_27 AC 166 ms
55,584 KB
testcase_28 AC 176 ms
55,532 KB
testcase_29 AC 167 ms
55,576 KB
testcase_30 AC 173 ms
55,752 KB
testcase_31 AC 174 ms
55,548 KB
testcase_32 AC 164 ms
55,640 KB
testcase_33 AC 162 ms
55,528 KB
testcase_34 AC 580 ms
81,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        String result = IntStream.range(0, t).mapToObj(i -> {
            char[] input = sc.next().toCharArray();
            int m = sc.nextInt();
            int length = input.length;
            long base = 0;
            long half = 0;
            boolean isOdd = false;
            for (char c : input) {
                int x = c - '0';
                base *= 10;
                base += x;
                base %= m;
                half *= 10;
                half += isOdd ? 5 : 0;
                half += x / 2;
                half %= m;
                isOdd = (x % 2 == 1);
            }
            if (isOdd) {
                half++;
            } else {
                base++;
            }
            return String.valueOf(base * half % m);
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0