結果
問題 | No.434 占い |
ユーザー | htensai |
提出日時 | 2020-01-08 21:14:21 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 970 bytes |
コンパイル時間 | 3,032 ms |
コンパイル使用メモリ | 77,028 KB |
実行使用メモリ | 39,000 KB |
最終ジャッジ日時 | 2024-05-02 13:03:44 |
合計ジャッジ時間 | 7,951 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
36,704 KB |
testcase_01 | AC | 42 ms
36,952 KB |
testcase_02 | AC | 42 ms
36,736 KB |
testcase_03 | AC | 42 ms
37,012 KB |
testcase_04 | AC | 43 ms
36,812 KB |
testcase_05 | AC | 42 ms
36,816 KB |
testcase_06 | AC | 46 ms
37,032 KB |
testcase_07 | AC | 45 ms
36,952 KB |
testcase_08 | AC | 149 ms
38,220 KB |
testcase_09 | AC | 109 ms
38,908 KB |
testcase_10 | AC | 76 ms
37,640 KB |
testcase_11 | AC | 54 ms
37,208 KB |
testcase_12 | AC | 87 ms
39,000 KB |
testcase_13 | AC | 144 ms
38,348 KB |
testcase_14 | AC | 106 ms
38,628 KB |
testcase_15 | TLE | - |
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 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { sb.append(calc(br.readLine())).append("\n"); } System.out.print(sb); } static int calc(String s) { char[] arr = s.toCharArray(); int n = arr.length; int[] nums = new int[n]; for (int i = 0; i < n; i++) { nums[i] = arr[i] - '0'; } for (int i = 0; i < n - 1; i++) { for (int j = 0; j < n - 1 - i; j++) { nums[j] = cInt(nums[j], nums[j + 1]); } } return nums[0]; } static int cInt(int x, int y) { int ans = x + y; return ans % 10 + ans / 10; } }