結果

問題 No.1841 Long Long
ユーザー マサマサ
提出日時 2022-03-04 15:53:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-07-18 12:24:18
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,864 KB
testcase_01 AC 121 ms
54,264 KB
testcase_02 AC 113 ms
53,732 KB
testcase_03 AC 121 ms
54,212 KB
testcase_04 AC 123 ms
54,256 KB
testcase_05 AC 120 ms
54,156 KB
testcase_06 AC 114 ms
52,768 KB
testcase_07 AC 123 ms
54,204 KB
testcase_08 AC 122 ms
54,184 KB
testcase_09 AC 127 ms
54,144 KB
testcase_10 AC 127 ms
53,884 KB
testcase_11 AC 122 ms
54,040 KB
testcase_12 AC 121 ms
54,236 KB
testcase_13 AC 118 ms
53,604 KB
testcase_14 AC 107 ms
52,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		
		for (int i = 0; i < n; i++) {
			System.out.print("Long");
		}
		
		sc.close();
	}
}
0