結果

問題 No.331 CodeRunnerでやれ
ユーザー rickythetarickytheta
提出日時 2015-12-24 01:17:06
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3,944 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 22,656 KB
実行使用メモリ 25,604 KB
平均クエリ数 11308.00
最終ジャッジ日時 2024-07-16 22:31:41
合計ジャッジ時間 15,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
25,232 KB
testcase_01 AC 146 ms
24,848 KB
testcase_02 AC 245 ms
24,976 KB
testcase_03 AC 199 ms
25,232 KB
testcase_04 AC 310 ms
25,076 KB
testcase_05 AC 238 ms
25,220 KB
testcase_06 AC 243 ms
24,848 KB
testcase_07 AC 1,355 ms
24,580 KB
testcase_08 AC 426 ms
24,848 KB
testcase_09 AC 735 ms
25,592 KB
testcase_10 AC 468 ms
24,580 KB
testcase_11 AC 3,944 ms
25,220 KB
testcase_12 AC 1,118 ms
25,208 KB
testcase_13 AC 1,301 ms
25,220 KB
testcase_14 AC 1,856 ms
24,892 KB
testcase_15 AC 373 ms
25,220 KB
testcase_16 AC 408 ms
25,604 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("RRRLL"[xorshift()%5]);
    }else{
      putchar("RRRRRLLLFFFFFFFFFF"[xorshift()%18]);
    }
    printf("\n");
    fflush(stdout);
  }
  return 0;
}
0