結果

問題 No.9000 Hello World! (テスト用)
ユーザー akuto1125
提出日時 2018-09-21 19:18:26
言語 JavaScript
(node v23.5.0)
結果
WA  
実行時間 -
コード長 130 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-10-13 00:39:58
合計ジャッジ時間 760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
	input = input.split('\n');

	console.log(input);
}
Main(require('fs').readFileSync('/dev/stdin', 'utf8'));
0