結果

問題 No.1003 サイコロの実装 (1)
ユーザー evawenisevawenis
提出日時 2020-06-21 15:20:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 1,766 ms
コンパイル使用メモリ 192,132 KB
最終ジャッジ日時 2025-01-11 08:59:09
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	int n; cin>>n;
	cout<<(n%6?"No"s:"Yes"s)<<"\n"s;
}
0