結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | orieka |
提出日時 | 2020-05-26 01:46:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 456 bytes |
コンパイル時間 | 889 ms |
コンパイル使用メモリ | 100,432 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-10-13 02:25:00 |
合計ジャッジ時間 | 1,215 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
ソースコード
#include <iostream> #include <vector> #include <climits> #include <algorithm> #include <cmath> #include <map> #include <set> #include <string> #include <bitset> #include <utility> #include <numeric> #include <queue> #include <stack> using ll = long long; using namespace std; constexpr int MOD = 1e9 + 7; constexpr ll MOD_LL = ll(1e9 + 7); int main(void) { int a, b; string s; cin >> a >> b >> s; cout << a + b << " " << s << endl; return 0; }