結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | Ainun Nadhifah Syamsiyah |
提出日時 | 2020-09-07 15:11:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 269 bytes |
コンパイル時間 | 1,517 ms |
コンパイル使用メモリ | 165,912 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-29 10:46:41 |
合計ジャッジ時間 | 1,925 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
#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(); } }