結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
not_522
|
| 提出日時 | 2020-01-02 23:37:07 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 167 bytes |
| コンパイル時間 | 486 ms |
| コンパイル使用メモリ | 65,588 KB |
| 最終ジャッジ日時 | 2025-01-08 15:47:02 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
/************/
/* main.cpp */
/************/
#include <iostream>
int main() {
int a, b;
std::cin >> a >> b;
std::cout << std::plus<int>()(a, b) << std::endl;
}
not_522