結果
問題 |
No.3226 2×2行列累乗
|
ユーザー |
![]() |
提出日時 | 2025-08-25 09:27:30 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 173 bytes |
コンパイル時間 | 734 ms |
コンパイル使用メモリ | 77,780 KB |
実行使用メモリ | 7,720 KB |
最終ジャッジ日時 | 2025-08-25 09:27:33 |
合計ジャッジ時間 | 2,263 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 27 |
ソースコード
#include<stdio.h> #include<iostream> int main(void) { int A,B,C,D,S,T,N,K,tS,n; std::cin >> A >> B >> C >> D >> S >> T >> N >> K; if(N=1) { std::cout << "1 1\n"; } }