結果
| 問題 | No.331 CodeRunnerでやれ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-20 16:35:40 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 299 bytes |
| 記録 | |
| コンパイル時間 | 268 ms |
| コンパイル使用メモリ | 74,212 KB |
| 実行使用メモリ | 54,740 KB |
| 平均クエリ数 | 2.76 |
| 最終ジャッジ日時 | 2026-08-14 17:10:22 |
| 合計ジャッジ時間 | 8,083 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 TLE * 1 -- * 13 |
ソースコード
#include <iostream>
using namespace std;
const string goal = "Merry Christmas!";
int main(){
string s;
while(cin >> s){
if(s == goal){
break;
}
int n = atoi(s.c_str());
if(n == 0){
cout << "L" << endl;
} else {
cout << "F" << endl;
}
}
return 0;
}