結果

問題 No.331 CodeRunnerでやれ
ユーザー rickythetarickytheta
提出日時 2015-12-24 01:22:21
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 575 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 25,604 KB
平均クエリ数 15556.47
最終ジャッジ日時 2024-07-16 08:18:21
合計ジャッジ時間 23,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
25,488 KB
testcase_01 AC 149 ms
24,836 KB
testcase_02 AC 231 ms
25,232 KB
testcase_03 AC 212 ms
24,976 KB
testcase_04 AC 274 ms
24,580 KB
testcase_05 AC 206 ms
24,580 KB
testcase_06 AC 367 ms
24,848 KB
testcase_07 AC 342 ms
25,604 KB
testcase_08 AC 210 ms
24,976 KB
testcase_09 AC 1,332 ms
24,580 KB
testcase_10 AC 182 ms
25,208 KB
testcase_11 TLE -
testcase_12 AC 2,855 ms
24,836 KB
testcase_13 AC 1,332 ms
25,220 KB
testcase_14 AC 2,635 ms
24,848 KB
testcase_15 AC 974 ms
24,580 KB
testcase_16 AC 4,550 ms
24,964 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("RRRLLLRRFFFFFFFFFFFFF"[xorshift()%21]);
    }
    printf("\n");
    fflush(stdout);
  }
  return 0;
}
0