結果

問題 No.8043 yukicoderへようこそ!
ユーザー ugis_prog
提出日時 2019-04-01 22:01:37
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 157,948 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 02:44:17
合計ジャッジ時間 1,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    4 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using s=string;
main(){
    int A,B;
    string S;
    cin >> A >> B;
    cin >> S;
    //cout << "Hello World" << endl;
    //cout << A*(A+1)/2 << endl;
    cout << A+B << " " << S << endl;
}
0