結果

問題 No.1003 サイコロの実装 (1)
ユーザー courange_coucourange_cou
提出日時 2020-03-06 21:44:25
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 27,776 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 05:02:35
合計ジャッジ時間 1,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX(a,b) (a > b) ? a : b
#define MIN(a,b) (a < b) ? a : b
const int inf = 1000000000; // 10^9

int main (){
   int n;scanf("%d",&n);
   if(n%6 == 0)printf("Yes\n");
   else printf("No\n");
   return 0;
}
0