結果
問題 | No.933 おまわりさんこいつです |
ユーザー | poi_kyopro |
提出日時 | 2019-11-29 21:58:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 940 bytes |
コンパイル時間 | 2,856 ms |
コンパイル使用メモリ | 73,968 KB |
実行使用メモリ | 49,136 KB |
最終ジャッジ日時 | 2024-11-20 22:11:21 |
合計ジャッジ時間 | 8,777 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
41,476 KB |
testcase_01 | AC | 128 ms
41,564 KB |
testcase_02 | AC | 125 ms
41,124 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 107 ms
41,172 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 539 ms
48,732 KB |
testcase_18 | AC | 121 ms
41,560 KB |
testcase_19 | AC | 533 ms
49,136 KB |
testcase_20 | WA | - |
testcase_21 | AC | 122 ms
41,364 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String args[]){ Scanner stdIn = new Scanner(System.in); int n = stdIn.nextInt(); //int b = stdIn.nextInt(); long p[] = new long[n]; //String s = stdIn.next(); //char c[] = s.toCharArray(); long sum = 1; //boolean flag = true; for(int i = 0; i < n; i++){ sum *= stdIn.nextInt(); } while(true){ String s = String.valueOf(sum); char c[] = s.toCharArray(); sum = 0; for(int i = 0; i < s.length(); i++){ sum += c[i] - 48; } if(sum <= 9){ break; } } System.out.println(sum); //System.out.println(); //System.out.print(); } }