結果

問題 No.331 CodeRunnerでやれ
ユーザー krotonkroton
提出日時 2015-12-20 17:01:14
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 464 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 56,792 KB
実行使用メモリ 25,604 KB
平均クエリ数 27642.53
最終ジャッジ日時 2024-07-16 22:14:56
合計ジャッジ時間 30,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
24,592 KB
testcase_01 AC 163 ms
25,232 KB
testcase_02 AC 582 ms
25,232 KB
testcase_03 AC 753 ms
25,228 KB
testcase_04 AC 655 ms
25,220 KB
testcase_05 AC 371 ms
24,836 KB
testcase_06 AC 1,258 ms
24,848 KB
testcase_07 AC 1,368 ms
24,836 KB
testcase_08 AC 273 ms
24,848 KB
testcase_09 AC 2,819 ms
25,076 KB
testcase_10 AC 2,969 ms
25,460 KB
testcase_11 AC 669 ms
24,848 KB
testcase_12 AC 4,721 ms
25,604 KB
testcase_13 AC 2,076 ms
25,220 KB
testcase_14 TLE -
testcase_15 AC 1,758 ms
25,220 KB
testcase_16 AC 3,929 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

const string goal = "Merry Christmas!";

int main(){
  string s;
  while(getline(cin, s)){
    if(s == goal){
      break;
    }
    int n = atoi(s.c_str());
    if(n == 0){
      cout << "L" << endl;
      continue;
    }
    cout << "R" << endl;
    int m;
    cin >> m;
    if(m > 0){
      cout << "F" << endl;
    } else {
      cout << "L" << endl;
      cin >> m;
      cout << "F" << endl;
    }
  }
  return 0;
}
0