結果

問題 No.1841 Long Long
ユーザー Subaru314Subaru314
提出日時 2022-02-19 20:52:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 2,939 ms
コンパイル使用メモリ 71,108 KB
実行使用メモリ 56,212 KB
最終ジャッジ日時 2023-09-11 20:53:38
合計ジャッジ時間 5,137 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
56,168 KB
testcase_01 AC 125 ms
55,728 KB
testcase_02 AC 124 ms
55,732 KB
testcase_03 AC 124 ms
56,212 KB
testcase_04 AC 124 ms
56,124 KB
testcase_05 AC 124 ms
56,024 KB
testcase_06 AC 123 ms
55,812 KB
testcase_07 AC 123 ms
55,700 KB
testcase_08 AC 123 ms
55,752 KB
testcase_09 AC 125 ms
55,852 KB
testcase_10 AC 132 ms
56,044 KB
testcase_11 AC 129 ms
55,756 KB
testcase_12 AC 128 ms
55,744 KB
testcase_13 AC 132 ms
55,688 KB
testcase_14 AC 132 ms
55,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;

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");
    }
  }
}
0