結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | keishi7773 |
提出日時 | 2021-04-24 18:42:33 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 187 bytes |
コンパイル時間 | 569 ms |
コンパイル使用メモリ | 118,272 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 09:10:26 |
合計ジャッジ時間 | 890 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
ソースコード
#include<iostream> #include<string> using namespace std; int main(){ int A,B; cin >> A >> B; string s; cin >> s; int ans = A+B; cout << ans << " " << s << endl; }