結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
greentea011
|
| 提出日時 | 2019-04-01 14:18:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 109 bytes |
| コンパイル時間 | 560 ms |
| コンパイル使用メモリ | 64,172 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-03 22:42:48 |
| 合計ジャッジ時間 | 981 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
int main() {
int a,b;
std::cin >> a >> b;
std::cout << a-(-b) << std::endl;
}
greentea011