結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | rickytheta |
提出日時 | 2015-12-24 01:21:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 589 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 22,656 KB |
実行使用メモリ | 95,548 KB |
平均クエリ数 | 3356.88 |
最終ジャッジ日時 | 2024-07-16 22:32:43 |
合計ジャッジ時間 | 11,597 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
24,848 KB |
testcase_01 | AC | 153 ms
24,592 KB |
testcase_02 | AC | 2,759 ms
25,220 KB |
testcase_03 | AC | 216 ms
25,232 KB |
testcase_04 | AC | 176 ms
24,836 KB |
testcase_05 | AC | 253 ms
24,836 KB |
testcase_06 | AC | 328 ms
24,976 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#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(){ // WAだけ増やして本当にごめんなさい // ランダムに進める 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('R'); }else{ putchar("RRRLLLRRFFFFFFFFFFFFF"[xorshift()%21]); } printf("\n"); fflush(stdout); } return 0; }