結果
問題 | No.1722 [Cherry 3rd Tune C] In my way |
ユーザー | magsta |
提出日時 | 2021-10-04 15:06:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,222 bytes |
コンパイル時間 | 7,634 ms |
コンパイル使用メモリ | 297,120 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 09:11:49 |
合計ジャッジ時間 | 7,582 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
#include <bits/stdc++.h> #include "testlib.h" using namespace std; int main() { long long N, M; N = inf.readLong((long long)1, (long long)1000, "N"); inf.readSpace(); M = inf.readLong((long long)1, (long long)1000, "M"); inf.readEoln(); vector<long long> X(N), Y(M); for (int i = 0; i < N; i++) { if (i != 0) inf.readSpace(); X[i] = inf.readLong((long long)1, (long long)1000000000, "X"); } inf.readEoln(); for (int i = 0; i < M; i++) { if (i != 0) inf.readSpace(); Y[i] = inf.readLong((long long)1, (long long)1000000000, "Y"); } inf.readEoln(); inf.readEof(); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { if (i != j && X[i] == X[j]) cout << -1 << endl; } } for (int i = 0; i < M; i++) { for (int j = 0; j < M; j++) { if (i != j && Y[i] == Y[j]) cout << -1 << endl; } } for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { if (X[i] == Y[j]) cout << -1 << endl; } } for (int i = 0; i < N; i++) { long long min_ = 1LL << 60; for (int j = 0; j < M; j++) { if (X[i] < Y[j]) min_ = min(min_, Y[j] - X[i]); } if (min_ != 1LL << 60) cout << min_ << endl; else cout << "Infinity" << endl; } }