結果

問題 No.9000 Hello World! (テスト用)
ユーザー ichi000225
提出日時 2021-02-10 16:43:53
言語 JavaScript
(node v23.5.0)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-07-08 03:00:38
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 4
権限があれば一括ダウンロードができます

ソースコード

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