結果
問題 | No.185 和風 |
ユーザー | onaona071 |
提出日時 | 2018-03-17 18:16:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 469 bytes |
コンパイル時間 | 439 ms |
コンパイル使用メモリ | 56,516 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 10:01:53 |
合計ジャッジ時間 | 952 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#include <iostream> #include <stdio.h> using namespace std; int main(int argc, char const* argv[]) { int n; cin>>n; int x[n],y[n],z[n]; int counter=1; for (int i = 0; i < n; i++) { cin>>x[i]>>y[i]; z[i] = y[i] - x[i]; } for (int i = 0; i < n-1; i++) { for (int j = i+1; j < n; j++) { if(z[j]==z[i]){ counter++; } } } cout<<counter<<endl; return 0; }