結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー tsumuritsumuri
提出日時 2022-07-06 00:03:49
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 41,956 KB
最終ジャッジ日時 2023-08-22 14:35:00
合計ジャッジ時間 881 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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