結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
38,400 KB
testcase_01 AC 61 ms
38,400 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