結果
| 問題 | No.2797 Square Tile |
| コンテスト | |
| ユーザー |
shobonvip
|
| 提出日時 | 2024-06-26 23:41:35 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 277 bytes |
| 記録 | |
| コンパイル時間 | 5,659 ms |
| コンパイル使用メモリ | 337,728 KB |
| 実行使用メモリ | 9,156 KB |
| 最終ジャッジ日時 | 2026-07-05 01:59:46 |
| 合計ジャッジ時間 | 6,426 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 21 |
ソースコード
#include <bits/stdc++.h>
#include "testlib.h"
using namespace std;
using ll = long long;
const ll MIN_N = 1;
const ll MAX_N = 100;
int main(){
registerValidation();
inf.readLong(MIN_N, MAX_N);
inf.readSpace();
inf.readLong(MIN_N, MAX_N);
inf.readEoln();
inf.readEof();
}
shobonvip