結果
| 問題 | No.1088 A+B Problem |
| ユーザー |
LV3zJigVW57oPGy
|
| 提出日時 | 2022-11-12 16:31:06 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 362µs | |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 845 ms |
| コンパイル使用メモリ | 171,428 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-26 22:10:24 |
| 合計ジャッジ時間 | 2,206 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#include <stdio.h>
#include <iomanip>
#include <iostream>
#include <string>
#include <algorithm>
int main(){
int a, b;
cin >> a >> b;
cout << a+b;
}
LV3zJigVW57oPGy