結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー akuto1125akuto1125
提出日時 2018-09-21 19:35:55
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 39,168 KB
最終ジャッジ日時 2024-10-13 00:41:17
合計ジャッジ時間 580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,168 KB
testcase_01 AC 60 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  input = input.split('\n');
  let ar_integer = input[0];
  let string = input[1];
  ar_integer = ar_integer.split(' ');
  let sum = parseInt(ar_integer[0]) + parseInt(ar_integer[1]);

  let output = sum + ' ' + string;

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