結果

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

ソースコード

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