結果
問題 |
No.331 CodeRunnerでやれ
|
ユーザー |
![]() |
提出日時 | 2019-08-15 18:25:26 |
言語 | C (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 81,392 KB |
平均クエリ数 | 10.00 |
最終ジャッジ日時 | 2024-07-16 17:55:40 |
合計ジャッジ時間 | 8,122 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 3 TLE * 1 -- * 12 |
ソースコード
// yukicoder: No.331 CodeRunnerでやれ // bal4u 2019.8.15 #include <stdio.h> #include <stdlib.h> int action(char ch) { char s[20]; if (ch) { putchar(ch), putchar('\n'); fflush(stdout); } scanf("%s", s); if (*s == 'M') exit(0); return atoi(s); } int main() { int d = action(0); while (d) d = action('F'); while (1) { d = action('L'); while (d == 0) d = action('R'); while (d = action('F')) { d = action('R'); if (d == 0) d = action('L'); } } return 0; }