結果

問題 No.969 じゃんけん
ユーザー butsurizuki
提出日時 2020-05-29 01:49:55
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 16:44:54
合計ジャッジ時間 620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 2 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(){
    int n;
    scanf("%d",&n);
    if(n==0||n==4||n==10){puts("Yes");}
    else{puts("No\n");}
    return 0;
}
0