結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-07-25 23:34:30 |
| 言語 | JavaScript (node v25.8.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 266 bytes |
| 記録 | |
| コンパイル時間 | 50 ms |
| コンパイル使用メモリ | 6,528 KB |
| 実行使用メモリ | 53,888 KB |
| 最終ジャッジ日時 | 2026-04-30 04:16:00 |
| 合計ジャッジ時間 | 4,543 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 34 |
ソースコード
process.stdin.resume();
process.stdin.setEncoding('utf8');
var g_input = '';
process.stdin.on('data', function(chunk) {
g_input += chunk;
});
process.stdin.on('end', function() {
main(g_input.split(/\r?\n/));
});
function main(inputs){
console.log(inputs)
}