結果

問題 No.9000 Hello World! (テスト用)
ユーザー n4sh
提出日時 2025-02-04 23:49:40
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2025-02-04 23:49:43
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
	input = input.split("\n");
	tmp = input[1].split(" ");
	
	// const a = parseInt(input[0], 10);
	// const b = parseInt(tmp[0], 10);
	// const c = parseInt(tmp[1], 10);
	// const s = input[2];

	//出力
	console.log("Hello World!");
}
//*この行以降は編集しないでください(標準入出力から一度に読み込み、Mainを呼び出します)
Main(require("fs").readFileSync("/dev/stdin", "utf8"));

// Main(``)
0