結果

問題 No.1256 連続整数列
ユーザー Mustafizur student
提出日時 2020-10-16 23:37:36
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 157,136 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 01:29:12
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
    ll n;
    cin>>n;
    if(n%3==0)
    {
        cout<<"Yes";
    }
    else
        cout<<"No";
}
0