結果

問題 No.1003 サイコロの実装 (1)
ユーザー taro.50904昇太郎
提出日時 2020-04-22 15:27:27
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 55,772 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 07:14:29
合計ジャッジ時間 1,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;


int main()
{
	int num;
	cin >> num;
	(!(num % 6)) ? cout << "yes" : cout << "no";
	return 0;
}
0