結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | リチウム |
提出日時 | 2014-11-20 23:08:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 174 ms / 5,000 ms |
コード長 | 256 bytes |
コンパイル時間 | 2,066 ms |
コンパイル使用メモリ | 74,076 KB |
実行使用メモリ | 81,860 KB |
最終ジャッジ日時 | 2024-06-07 01:16:11 |
合計ジャッジ時間 | 3,374 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 171 ms
81,532 KB |
testcase_01 | AC | 174 ms
81,816 KB |
testcase_02 | AC | 174 ms
81,724 KB |
testcase_03 | AC | 172 ms
81,860 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String s=sc.next(); int x[]=new int[10000000]; Arrays.fill(x, 3); System.out.println("Hello World!"); } }