結果

問題 No.1841 Long Long
ユーザー ripityripity
提出日時 2022-02-18 21:20:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-29 08:11:46
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,108 KB
testcase_01 AC 128 ms
41,388 KB
testcase_02 AC 128 ms
41,220 KB
testcase_03 AC 129 ms
41,364 KB
testcase_04 AC 131 ms
41,220 KB
testcase_05 AC 131 ms
41,300 KB
testcase_06 AC 128 ms
41,288 KB
testcase_07 AC 131 ms
41,292 KB
testcase_08 AC 131 ms
41,156 KB
testcase_09 AC 131 ms
41,568 KB
testcase_10 AC 130 ms
41,380 KB
testcase_11 AC 115 ms
40,056 KB
testcase_12 AC 116 ms
39,940 KB
testcase_13 AC 128 ms
41,236 KB
testcase_14 AC 128 ms
41,020 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