結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | rickytheta |
提出日時 | 2015-12-24 01:19:26 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 551 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 20,480 KB |
実行使用メモリ | 87,808 KB |
平均クエリ数 | 1406.88 |
最終ジャッジ日時 | 2024-07-16 08:17:54 |
合計ジャッジ時間 | 16,257 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
25,312 KB |
testcase_01 | AC | 148 ms
25,232 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 183 ms
24,976 KB |
testcase_04 | AC | 191 ms
24,580 KB |
testcase_05 | AC | 383 ms
25,220 KB |
testcase_06 | AC | 186 ms
24,592 KB |
testcase_07 | AC | 1,365 ms
25,220 KB |
testcase_08 | AC | 444 ms
24,592 KB |
testcase_09 | TLE | - |
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(){ // わからん // ランダムに進める 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("RRRRRFFFFFFFFFFFFF"[xorshift()%18]); } printf("\n"); fflush(stdout); } return 0; }