結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | Ainun Nadhifah Syamsiyah |
提出日時 | 2020-09-07 15:11:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 269 bytes |
コンパイル時間 | 1,378 ms |
コンパイル使用メモリ | 165,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 23:47:43 |
合計ジャッジ時間 | 1,773 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> #define forn(i,a,b) for(int i=a; i<=b; i++) using namespace std; void solve(){ int a,b; string s; cin>>a>>b>>s; cout<<a+b<<"\n"<<s<<"\n"; } int main(){ ios::sync_with_stdio(0); cin.tie(0); int t=1; // cin>>t; while(t--){ solve(); } }