結果

問題 No.331 CodeRunnerでやれ
ユーザー rickythetarickytheta
提出日時 2015-12-24 01:15:40
言語 C90
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 552 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 25,476 KB
平均クエリ数 11155.53
最終ジャッジ日時 2024-07-16 22:32:05
合計ジャッジ時間 23,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
24,848 KB
testcase_01 AC 178 ms
25,232 KB
testcase_02 AC 198 ms
24,592 KB
testcase_03 AC 267 ms
24,848 KB
testcase_04 AC 244 ms
25,220 KB
testcase_05 AC 269 ms
24,836 KB
testcase_06 AC 398 ms
24,848 KB
testcase_07 AC 946 ms
24,836 KB
testcase_08 AC 470 ms
24,848 KB
testcase_09 AC 1,076 ms
25,220 KB
testcase_10 AC 433 ms
24,836 KB
testcase_11 AC 2,159 ms
25,232 KB
testcase_12 AC 1,189 ms
24,580 KB
testcase_13 TLE -
testcase_14 AC 1,473 ms
24,848 KB
testcase_15 AC 938 ms
25,220 KB
testcase_16 AC 4,577 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

char s[100];

long long xorshift(){
  static long long y = 2463534242;
  y = y^(y<<13);
  y %= 1ll<<32;
  y = y^(y>>17);
  y = y^(y<<5);
  y %= 1ll<<32;
  return y;
}

int main(){
  // わからん
  // ランダムに進める
  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("RL"[xorshift()%2]);
    }else{
      putchar("RLFFF"[xorshift()%5]);
    }
    printf("\n");
    fflush(stdout);
  }
  return 0;
}
0