結果

問題 No.331 CodeRunnerでやれ
ユーザー rickythetarickytheta
提出日時 2015-12-24 02:36:12
言語 C90
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 404 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 94,504 KB
平均クエリ数 6036.00
最終ジャッジ日時 2024-07-16 22:33:47
合計ジャッジ時間 17,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
24,976 KB
testcase_01 AC 153 ms
25,232 KB
testcase_02 AC 204 ms
24,592 KB
testcase_03 AC 182 ms
25,232 KB
testcase_04 AC 186 ms
25,220 KB
testcase_05 AC 175 ms
24,836 KB
testcase_06 AC 258 ms
25,232 KB
testcase_07 AC 819 ms
24,824 KB
testcase_08 AC 370 ms
24,976 KB
testcase_09 AC 545 ms
25,220 KB
testcase_10 AC 344 ms
25,208 KB
testcase_11 AC 931 ms
24,976 KB
testcase_12 AC 1,401 ms
24,580 KB
testcase_13 AC 1,268 ms
25,220 KB
testcase_14 AC 1,390 ms
25,232 KB
testcase_15 AC 1,192 ms
25,220 KB
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

char s[100];

int main(){
  char list[6] = {'R','L','F','F','F','F'};
  while(1){
    scanf("%s",s);
    if(s[0]=='M')break;
    if(s[3]=='5'){
      printf("F\n");
      fflush(stdout);
      continue;
    }
    if(s[0]=='0'){
      putchar(list[rand()%2]);
    }else{
      putchar(list[rand()%6]);
    }
    putchar('\n');
    fflush(stdout);
  }
  return 0;
}
0