結果
問題 | No.403 2^2^2 |
ユーザー | watarimaycry2 |
提出日時 | 2020-03-30 20:35:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,991 bytes |
コンパイル時間 | 3,870 ms |
コンパイル使用メモリ | 84,816 KB |
実行使用メモリ | 43,212 KB |
最終ジャッジ日時 | 2024-06-23 02:26:36 |
合計ジャッジ時間 | 9,386 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 176 ms
42,544 KB |
testcase_01 | AC | 179 ms
42,792 KB |
testcase_02 | AC | 173 ms
42,560 KB |
testcase_03 | AC | 179 ms
42,924 KB |
testcase_04 | AC | 177 ms
42,800 KB |
testcase_05 | AC | 180 ms
42,920 KB |
testcase_06 | AC | 176 ms
43,068 KB |
testcase_07 | AC | 178 ms
43,052 KB |
testcase_08 | AC | 169 ms
43,184 KB |
testcase_09 | AC | 179 ms
42,980 KB |
testcase_10 | AC | 177 ms
42,936 KB |
testcase_11 | AC | 183 ms
43,192 KB |
testcase_12 | AC | 177 ms
42,580 KB |
testcase_13 | AC | 173 ms
43,076 KB |
testcase_14 | AC | 178 ms
43,056 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 174 ms
42,948 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 172 ms
42,940 KB |
testcase_23 | AC | 170 ms
42,920 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 175 ms
42,800 KB |
testcase_27 | AC | 173 ms
42,644 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); static void myout(Object t){System.out.println(t);}//standard output static void myerr(Object t){System.err.println(t);}//standard error static String getStr(){return sc.next();} static int getInt(){return Integer.parseInt(getStr());} static long getLong(){return Long.parseLong(getStr());} static boolean hasNext(){return sc.hasNext();} static char[] mySplit(String str){return str.toCharArray();} public static void main(String[] args){ char[] tmp = mySplit(getStr()); String strA = ""; String strB = ""; String strC = ""; boolean accessA = false; boolean accessB = false; for(int i = 0; i < tmp.length; i++){ if(!accessA){ if(tmp[i] != '^'){ strA += tmp[i]; }else{ accessA = true; } }else if(!accessB){ if(tmp[i] != '^'){ strB += tmp[i]; }else{ accessB = true; } }else{ strC += tmp[i]; } } long A = Long.parseLong(strA); long B = Long.parseLong(strB); long C = Long.parseLong(strC); long mod = 1000000007; myout(originPow(originPow(A,B,mod),C,mod) + " " + originPow(A,originPow(B,C,mod - 1),mod)); } //Method addition frame start static long originPow(long x, long n) {return originPow(x,n,-1);} static long originPow(long x, long n, long m) { long ans = 1; while (n > 0) { if ((n & 1) == 1){ ans = ans * x; if(m != -1){ans %= m;} } x = x * x; if(m != -1){x %= m;} n >>= 1; } return ans; } //Method addition frame end }