結果

問題 No.1841 Long Long
ユーザー ripityripity
提出日時 2022-02-18 21:20:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 71,960 KB
実行使用メモリ 55,956 KB
最終ジャッジ日時 2023-09-11 18:22:15
合計ジャッジ時間 5,517 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,632 KB
testcase_01 AC 129 ms
55,876 KB
testcase_02 AC 129 ms
55,956 KB
testcase_03 AC 127 ms
55,440 KB
testcase_04 AC 128 ms
55,328 KB
testcase_05 AC 127 ms
55,300 KB
testcase_06 AC 127 ms
55,444 KB
testcase_07 AC 126 ms
55,520 KB
testcase_08 AC 129 ms
55,668 KB
testcase_09 AC 128 ms
55,908 KB
testcase_10 AC 129 ms
55,692 KB
testcase_11 AC 128 ms
55,268 KB
testcase_12 AC 130 ms
54,220 KB
testcase_13 AC 128 ms
55,468 KB
testcase_14 AC 129 ms
55,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int t = 1;
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int N = sc.nextInt();
        for( int i = 0; i < N; i++ ) pw.print("Long");
        
    }
    
}
0