結果
問題 | No.1819 Mirrored 2 |
ユーザー | ripity |
提出日時 | 2022-01-21 23:16:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,274 bytes |
コンパイル時間 | 1,999 ms |
コンパイル使用メモリ | 78,076 KB |
実行使用メモリ | 64,648 KB |
最終ジャッジ日時 | 2024-05-04 14:42:25 |
合計ジャッジ時間 | 6,404 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | OLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
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 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { public static Scanner sc = new Scanner(System.in); public static PrintWriter pw = new PrintWriter(System.out); public static void main(String[] args) { int T = 1; while( T > 0 ) { solve(); T--; } pw.flush(); } static void solve() { long p = sc.nextLong(); long q = sc.nextLong(); long x = sc.nextLong(); long y = sc.nextLong(); long t = Long.toString(q).length(); long revq = Long.valueOf(new StringBuilder(Long.toString(q)).reverse().toString()); long revqx = Long.valueOf(new StringBuilder(Long.toString(q+x)).reverse().toString()); long m = revqx; pw.println(revqx); while( m > 0 ) { long pow = modpow(10,t,p); m *= pow; m %= p; m += revq; m %= p; pw.print(revq); } } static long modpow( long x, long n, long mod ) { if( n == 0 ) { return 1; } long k = 1; while( n > 1 ) { if( n%2 == 1 ) k *= x; x *= x; n /= 2; x %= mod; k %= mod; } return (k*x)%mod; } }