結果
| 問題 | No.2580 Hyperinflation |
| コンテスト | |
| ユーザー |
noshi91
|
| 提出日時 | 2023-03-29 02:01:06 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 321 bytes |
| 記録 | |
| コンパイル時間 | 5,666 ms |
| コンパイル使用メモリ | 254,876 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-06-30 02:28:45 |
| 合計ジャッジ時間 | 7,072 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 31 |
ソースコード
#include <string>
#include "testlib.h"
int main() {
registerValidation();
const int N = inf.readInt(1, 2000);
inf.readChar('\n');
for (int i = 1; i < N; i++) {
inf.readInt(2, 2000);
inf.readChar(" \n"[i + 1 == N]);
}
const std::string M = inf.readString();
inf.readChar('\n');
inf.readEof();
}
noshi91