結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー tentententen
提出日時 2024-08-01 14:43:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 2,301 bytes
コンパイル時間 5,678 ms
コンパイル使用メモリ 92,372 KB
実行使用メモリ 74,048 KB
最終ジャッジ日時 2024-08-01 14:44:06
合計ジャッジ時間 14,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,732 KB
testcase_01 AC 577 ms
73,592 KB
testcase_02 AC 581 ms
73,992 KB
testcase_03 AC 596 ms
73,988 KB
testcase_04 AC 583 ms
74,048 KB
testcase_05 AC 689 ms
73,928 KB
testcase_06 AC 661 ms
73,460 KB
testcase_07 AC 167 ms
55,840 KB
testcase_08 AC 172 ms
55,952 KB
testcase_09 AC 118 ms
53,384 KB
testcase_10 AC 129 ms
52,940 KB
testcase_11 AC 69 ms
51,472 KB
testcase_12 AC 68 ms
50,956 KB
testcase_13 AC 167 ms
55,760 KB
testcase_14 AC 169 ms
55,776 KB
testcase_15 AC 160 ms
54,672 KB
testcase_16 AC 168 ms
55,828 KB
testcase_17 AC 168 ms
55,636 KB
testcase_18 AC 160 ms
55,548 KB
testcase_19 AC 169 ms
55,688 KB
testcase_20 AC 165 ms
55,612 KB
testcase_21 AC 163 ms
55,772 KB
testcase_22 AC 173 ms
56,068 KB
testcase_23 AC 166 ms
55,596 KB
testcase_24 AC 166 ms
55,332 KB
testcase_25 AC 164 ms
55,380 KB
testcase_26 AC 166 ms
55,560 KB
testcase_27 AC 163 ms
55,580 KB
testcase_28 AC 169 ms
55,512 KB
testcase_29 AC 165 ms
55,652 KB
testcase_30 AC 170 ms
55,056 KB
testcase_31 AC 165 ms
55,404 KB
testcase_32 AC 163 ms
55,636 KB
testcase_33 AC 163 ms
55,572 KB
testcase_34 AC 529 ms
74,036 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(a -> {
            char[] n = sc.next().toCharArray();
            int mod = sc.nextInt();
            long ans;
            if ((n[n.length - 1] - '0') % 2 == 0) {
                ans = halfValue(n, mod);
                n[n.length - 1]++;
                ans *= fullValue(n, mod);
                ans %= mod;
            } else {
                ans = fullValue(n, mod);
                n[n.length - 1]++;
                ans *= halfValue(n, mod);
                ans %= mod;
            }
            return String.valueOf(ans);
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
    
    static long halfValue(char[] arr, int mod) {
        long ans = 0;
        int next = 0;
        for (char c : arr) {
            int x = c - '0' + next;
            ans *= 10;
            ans += x / 2;
            ans %=  mod;
            next = x % 2 * 10;
        }
        return ans;
    }
    
    static long fullValue(char[] arr, int mod) {
        long ans = 0;
        for (char c : arr) {
            ans *= 10;
            ans += c - '0';
            ans %= mod;
        }
        return ans;
    }
    
}
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