結果
問題 |
No.331 CodeRunnerでやれ
|
ユーザー |
|
提出日時 | 2015-12-19 07:14:29 |
言語 | Java (openjdk 23) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 4,197 ms |
コンパイル使用メモリ | 78,324 KB |
実行使用メモリ | 84,808 KB |
平均クエリ数 | 596.59 |
最終ジャッジ日時 | 2024-07-16 22:08:19 |
合計ジャッジ時間 | 15,676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 TLE * 2 -- * 7 |
ソースコード
package writer; import java.io.PrintWriter; import java.util.Arrays; import java.util.Random; import java.util.Scanner; public class RandomCrawler { static Scanner in; static PrintWriter out; static String INPUT = ""; static void solve() { Random gen = new Random(0); while(true){ String input = in.next(); if(input.charAt(0) >= '0' && input.charAt(0) <= '9'){ if(input.equals("20151224")){ out.println("F"); out.flush(); continue; } }else{ break; } char command = "FBLR".charAt(gen.nextInt(4)); out.println(command); out.flush(); } } public static void main(String[] args) throws Exception { in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT); out = new PrintWriter(System.out); solve(); out.flush(); } static int ni() { return Integer.parseInt(in.next()); } static long nl() { return Long.parseLong(in.next()); } static double nd() { return Double.parseDouble(in.next()); } static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); } }