結果

問題 No.2947 Sing a Song
ユーザー tentententen
提出日時 2024-10-28 09:32:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 2,006 bytes
コンパイル時間 2,622 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 55,672 KB
最終ジャッジ日時 2024-10-28 09:32:18
合計ジャッジ時間 8,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,380 KB
testcase_01 AC 52 ms
50,380 KB
testcase_02 AC 53 ms
49,872 KB
testcase_03 AC 70 ms
50,792 KB
testcase_04 AC 101 ms
51,488 KB
testcase_05 AC 86 ms
51,232 KB
testcase_06 AC 88 ms
51,360 KB
testcase_07 AC 87 ms
51,384 KB
testcase_08 AC 94 ms
51,588 KB
testcase_09 AC 83 ms
50,972 KB
testcase_10 AC 81 ms
50,976 KB
testcase_11 AC 79 ms
51,012 KB
testcase_12 AC 100 ms
53,676 KB
testcase_13 AC 105 ms
53,788 KB
testcase_14 AC 88 ms
51,136 KB
testcase_15 AC 93 ms
53,652 KB
testcase_16 AC 82 ms
50,704 KB
testcase_17 AC 112 ms
52,332 KB
testcase_18 AC 127 ms
54,276 KB
testcase_19 AC 114 ms
54,172 KB
testcase_20 AC 130 ms
54,344 KB
testcase_21 AC 101 ms
51,832 KB
testcase_22 AC 115 ms
54,104 KB
testcase_23 AC 138 ms
54,892 KB
testcase_24 AC 143 ms
55,268 KB
testcase_25 AC 142 ms
54,284 KB
testcase_26 AC 145 ms
55,036 KB
testcase_27 AC 166 ms
55,672 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 n = sc.nextInt();
        String s = sc.next();
        String t = sc.next();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            int x = sc.nextInt();
            for (int i = x / s.length(); i >= 0; i--) {
                if ((x - s.length() * i) % t.length() == 0) {
                    sb.append(getLine(s, t, i, (x - s.length() * i) / t.length())).append("\n");
                    break;
                } 
            }
        }
        System.out.print(sb);
    }
    
    static String getLine(String s, String t, int a, int b) {
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < a; i++) {
            if (sb.length() != 0) {
                sb.append(" ");
            }
            sb.append(s);
        }
        for (int i = 0; i < b; i++) {
            if (sb.length() != 0) {
                sb.append(" ");
            }
            sb.append(t);
        }
        return sb.toString();
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    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