結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー tsumuritsumuri
提出日時 2022-07-06 00:03:49
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-05-09 20:18:41
合計ジャッジ時間 743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

function main(input){
    const data = input.split('\n');
    let tmp = data[0].split(' ');
    let A = tmp[0];
    let B = tmp[1];
    A=Number(A);
    B=Number(B);
    console.log(`${A + B} ${data[1]}`);
}
main(require('fs').readFileSync('/dev/stdin', 'UTF-8'));
0