結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
ID 21712
|
| 提出日時 | 2024-12-23 10:06:08 |
| 言語 | TypeScript (5.9.3) |
| 結果 |
AC
|
| 実行時間 | 115 ms / 1,000 ms |
| コード長 | 324 bytes |
| 記録 | |
| コンパイル時間 | 8,313 ms |
| コンパイル使用メモリ | 315,640 KB |
| 実行使用メモリ | 52,048 KB |
| 最終ジャッジ日時 | 2026-01-04 17:38:07 |
| 合計ジャッジ時間 | 9,084 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
function main(input: string): void {
const lines = input.split(/\n/);
const firstLine = lines[0].split(/\s/);
const A = parseInt(firstLine[0]);
const B = parseInt(firstLine[1]);
const secondLine = lines[1];
const S = secondLine;
console.log(A + B, S);
}
main(require('fs').readFileSync('/dev/stdin', 'utf8'));
ID 21712