結果

問題 No.1841 Long Long
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 17:11:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 75,848 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-11-24 16:27:30
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
52,848 KB
testcase_01 AC 125 ms
54,032 KB
testcase_02 AC 122 ms
53,872 KB
testcase_03 AC 116 ms
52,908 KB
testcase_04 AC 125 ms
54,136 KB
testcase_05 AC 130 ms
54,024 KB
testcase_06 AC 126 ms
54,008 KB
testcase_07 AC 127 ms
54,188 KB
testcase_08 AC 129 ms
54,200 KB
testcase_09 AC 128 ms
54,268 KB
testcase_10 AC 128 ms
54,424 KB
testcase_11 AC 131 ms
53,820 KB
testcase_12 AC 125 ms
54,100 KB
testcase_13 AC 131 ms
54,468 KB
testcase_14 AC 129 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Repeat_String {
    public static String StrRepeater(int repeats, String msg) {
        return msg.repeat(Math.max(0, repeats));
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.println(StrRepeater(n,"Long"));
    }
}
0