結果

問題 No.1841 Long Long
ユーザー マサ
提出日時 2022-03-04 15:53:11
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

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