結果

問題 No.9000 Hello World! (テスト用)
ユーザー ichi000225ichi000225
提出日時 2021-02-10 16:43:53
言語 JavaScript
(node v21.7.1)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 5,324 KB
実行使用メモリ 43,872 KB
最終ジャッジ日時 2023-09-22 11:10:05
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        const a = "Hello World!"
        console.log(a);
    </script>
</body>
</html>
0