結果
| 問題 |
No.331 CodeRunnerでやれ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-24 01:01:20 |
| 言語 | Java (openjdk 23) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 2,570 bytes |
| コンパイル時間 | 3,501 ms |
| コンパイル使用メモリ | 77,636 KB |
| 実行使用メモリ | 71,264 KB |
| 平均クエリ数 | 70.18 |
| 最終ジャッジ日時 | 2024-07-16 22:29:02 |
| 合計ジャッジ時間 | 14,297 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 TLE * 1 -- * 8 |
ソースコード
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Scanner;
public class Main_yukicoder331 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Printer pr = new Printer(System.out);
int ph = 0;
while (true) {
String s = sc.nextLine();
if (s.equals("Merry Christmas!")) {
break;
}
int f = Integer.parseInt(s);
// pr.printf("f ph prev d %d %d %d %d\n", f, ph, prev, d);
if (f == 20151224) {
pr.println("F");
pr.flush();
ph = 99;
continue;
}
if (ph == 0) {
if (f == 0) {
ph = 1;
pr.println("R");
pr.flush();
} else {
pr.println("F");
pr.flush();
}
} else if (ph == 1) {
pr.println("L");
pr.flush();
ph = 2;
} else if (ph == 2) {
if (f == 0) {
pr.println("R");
pr.flush();
ph = 3;
} else {
pr.println("F");
pr.flush();
ph = 1;
}
} else if (ph == 3) {
if (f == 0) {
pr.println("R");
pr.flush();
ph = 1;
} else {
pr.println("F");
pr.flush();
ph = 1;
}
} else {
pr.println("F");
pr.flush();
}
}
pr.close();
sc.close();
}
/*
@SuppressWarnings("unused")
private static class Scanner {
BufferedReader br;
Iterator<String> it;
Scanner (InputStream in) {
br = new BufferedReader(new InputStreamReader(in));
}
String next() throws RuntimeException {
try {
if (it == null || !it.hasNext()) {
it = Arrays.asList(br.readLine().split(" ")).iterator();
}
return it.next();
} catch (IOException e) {
throw new IllegalStateException();
}
}
int nextInt() throws RuntimeException {
return Integer.parseInt(next());
}
long nextLong() throws RuntimeException {
return Long.parseLong(next());
}
float nextFloat() throws RuntimeException {
return Float.parseFloat(next());
}
double nextDouble() throws RuntimeException {
return Double.parseDouble(next());
}
void close() {
try {
br.close();
} catch (IOException e) {
// throw new IllegalStateException();
}
}
}
*/
private static class Printer extends PrintWriter {
Printer(PrintStream out) {
super(out);
}
}
}