結果

問題 No.9000 Hello World! (テスト用)
ユーザー yu0912
提出日時 2020-07-23 01:02:53
言語 JavaScript
(node v25.6.0)
コンパイル:
true
実行:
node _filename_ ONLINE_JUDGE
結果
WA  
実行時間 -
コード長 265 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 53 ms
コンパイル使用メモリ 7,968 KB
実行使用メモリ 53,860 KB
最終ジャッジ日時 2026-03-07 18:25:44
合計ジャッジ時間 949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

const { readFileSync, existsSync } = require("fs");

const main = (input = "") => {
  return "Hello world!";
};

const stdin = "/dev/stdin";

if (existsSync(stdin)) {
  const input = readFileSync(stdin, "utf8");
  console.log(main(input));
}

module.exports = main;
0