結果
問題 | No.1458 Segment Function |
ユーザー | tenten |
提出日時 | 2024-07-23 10:45:21 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,139 bytes |
コンパイル時間 | 2,442 ms |
コンパイル使用メモリ | 78,004 KB |
実行使用メモリ | 50,412 KB |
最終ジャッジ日時 | 2024-07-23 10:45:30 |
合計ジャッジ時間 | 7,213 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,084 KB |
testcase_01 | AC | 52 ms
50,180 KB |
testcase_02 | AC | 53 ms
50,360 KB |
testcase_03 | AC | 53 ms
50,412 KB |
testcase_04 | AC | 55 ms
50,380 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static int[] exchange = new int[]{6, 2, 5, 5, 4, 5, 6, 4, 7, 6}; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); String n = sc.next(); if (n.length() <= 2) { int count = Integer.parseInt(n); if (count == 0) { System.out.println(inputs); } else { int current = func(inputs); for (int i = 1; i < count; i++) { current = func(String.valueOf(current).toCharArray()); } System.out.println(current); } } else { int current = func(inputs); while (current != 4 && current != 6) { current = func(String.valueOf(current).toCharArray()); } System.out.println(current); } } static int func(char[] arr) { int ans = 0; for (char c : arr) { if (c == '-') { ans++; } else { ans += exchange[c - '0']; } } return ans; } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }