結果
問題 | No.305 鍵(2) |
ユーザー | nCk_cv |
提出日時 | 2015-11-27 22:44:53 |
言語 | Java21 (openjdk 21) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 796 bytes |
コンパイル時間 | 3,077 ms |
コンパイル使用メモリ | 75,936 KB |
実行使用メモリ | 71,312 KB |
平均クエリ数 | 32.54 |
最終ジャッジ日時 | 2024-07-16 06:37:09 |
合計ジャッジ時間 | 6,645 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 180 ms
70,504 KB |
testcase_01 | AC | 191 ms
70,492 KB |
testcase_02 | AC | 163 ms
69,580 KB |
testcase_03 | RE | - |
testcase_04 | AC | 191 ms
70,784 KB |
testcase_05 | RE | - |
testcase_06 | AC | 167 ms
70,492 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 201 ms
70,604 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
import java.util.*; import java.util.Map.Entry; import java.math.*; import java.awt.geom.*; import java.io.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); boolean[] check = new boolean[10]; char[] say = new char[10]; for(int i = 0; i < 10; i++) { say[i] = '0'; } int pre = 0; boolean first = true; while(true) { System.out.println(String.valueOf(say)); int ans = sc.nextInt(); String res = sc.next(); if(ans == 10) break; if(first) { first = false; pre = ans; continue; } for(int i = 0; i < 10; i++) { if(!check[i]) { if(pre > ans) { say[i]--; check[i] = true; } else { say[i]++; } break; } } pre = ans; } } }