結果

問題 No.3043 yukicoderへようこそ!
ユーザー chocoruskchocorusk
提出日時 2019-04-01 22:58:26
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 100,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 08:41:24
合計ジャッジ時間 1,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;

int main()
{
    cout<<"Hello World!"<<endl;
    int n; cin>>n;
    cout<<n*(n+1)/2<<endl;
    int a, b; cin>>a>>b;
    string s; cin>>s;
    cout<<a+b<<" "<<s<<endl;
    cin>>n;
    for(int i=1; i<=n; i++){
        if(i%3!=0 && i%5!=0){
            cout<<i<<endl; continue;
        }
        if(i%3==0) cout<<"Fizz";
        if(i%5==0) cout<<"Buzz";
        cout<<endl;
    }
    cin>>n;
    ll x; ll ans=0;
    for(int i=0; i<n; i++){
        cin>>x;
        ans+=x;
    }
    cout<<ans<<endl;
    ans=0;
    cin>>n;
    for(int i=0; i<n; i++){
        cin>>x;
        ans+=x;
    }
    cout<<ans<<endl;
    return 0;
}
0