結果

問題 No.2441 行列累乗
ユーザー kusagame12kusagame12
提出日時 2024-03-05 18:14:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,000 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 79,184 KB
実行使用メモリ 57,268 KB
最終ジャッジ日時 2024-09-29 18:03:22
合計ジャッジ時間 6,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,508 KB
testcase_01 AC 132 ms
54,284 KB
testcase_02 AC 141 ms
54,412 KB
testcase_03 AC 131 ms
55,008 KB
testcase_04 AC 133 ms
54,928 KB
testcase_05 AC 125 ms
54,308 KB
testcase_06 AC 142 ms
54,684 KB
testcase_07 AC 134 ms
53,752 KB
testcase_08 AC 125 ms
54,688 KB
testcase_09 AC 132 ms
54,308 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 149 ms
55,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc  = new Scanner(System.in); 
        
        int[][] ns = new int[2][2];
        for(int i = 0 ; i < 2 ; i++){
            ns[i][0] = sc.nextInt();
            ns[i][1] = sc.nextInt();
        }
        
        int[][] ans = new int[2][2];
        ans[0][0] = ns[0][0];
        ans[0][1] = ns[0][1];
        ans[1][0] = ns[1][0];
        ans[1][1] = ns[1][1];
        
        for(int m = 0 ; m < 2 ; m++){
            for(int i = 0 ; i < 2 ; i++){
                    
                int ans1 = ans[i][0] * ns[i][0] + ans[i][1] * ns[i][0]; 
                int ans2 = ans[i][0] * ns[i][1] + ans[i][1] * ns[i][1]; 
                
                ans[i][0] = ans1;
                ans[i][1] = ans2;
            }
        }
             
        for(int i = 0 ; i < 2 ; i++){   
            System.out.println(ans[i][0]+" "+ans[i][1]);
        }
            
    }
}
0