結果

問題 No.1384 Bishop and Rook
ユーザー Mitarushi
提出日時 2021-01-08 14:31:50
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 3,029 ms
コンパイル使用メモリ 118,364 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 23:23:16
合計ジャッジ時間 12,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 55
権限があれば一括ダウンロードができます

ソースコード

diff #

//Judge test 1

#include <iostream>
using namespace std;

using ll = long long;

int main(){
  int t;
  cin>>t;
  while(t--){
    printf("-1\n");
  }
}
0