結果
問題 |
No.9001 標準入出力の練習問題(テスト用)
|
ユーザー |
|
提出日時 | 2020-07-02 15:47:01 |
言語 | JavaScript (node v23.5.0) |
結果 |
AC
|
実行時間 | 69 ms / 1,000 ms |
コード長 | 333 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 39,168 KB |
最終ジャッジ日時 | 2024-09-15 01:02:59 |
合計ジャッジ時間 | 585 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 |
ソースコード
function Main(input) { const input_data = input.split("\n"); const first_line = input_data[0].split(" "); const second_line = input_data[1]; const N = parseInt(first_line[0]) + parseInt(first_line[1]); const S = second_line; console.log(N + " " + S); } Main(require("fs").readFileSync("/dev/stdin", "utf8"));