結果

問題 No.1003 サイコロの実装 (1)
ユーザー saxofone111
提出日時 2021-04-19 21:14:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 65,536 KB
最終ジャッジ日時 2025-01-20 22:12:02
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
    
    int N;
    cin >> N;
    if(N%6==0){
        cout << "Yes"<<endl;
        
    }else{
        
        cout << "No"<<endl;
    }
    
    return 0;
}
0