結果

問題 No.8049 Yes
ユーザー akakimidori
提出日時 2019-04-01 23:49:23
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 462 ms
実行使用メモリ 964 KB
スコア 100
最終ジャッジ日時 2019-04-01 23:49:24
ジャッジサーバーID
(参考情報)
judge6 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<stdint.h>
#include<inttypes.h>
#include<time.h>

typedef int32_t i32;

void run (void) {
  srand((unsigned)time(NULL));
  i32 m = rand()%1000;
  puts(m <= 600 ? "Yes" : "No");
}

int main (void) {
  run ();
  return 0;
}
0