結果
問題 | No.1280 Beyond C |
ユーザー | chacoder1 |
提出日時 | 2020-12-07 23:41:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 499 bytes |
コンパイル時間 | 2,029 ms |
コンパイル使用メモリ | 203,460 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-17 14:09:13 |
合計ジャッジ時間 | 10,466 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,888 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int A[100100]; int B[100100]; int main(){ long long N,M,C; cin>>N>>M>>C; for(int i=0;i<N;i++){ cin>>A[i]; } for(int i=0;i<M;i++){ cin>>B[i]; } sort(A,A+N); sort(B,B+M); int cnt=0; for(int i=0;i<N;i++){ for(int j=0;j<M;j++){ if(A[i]*B[j]>C){ cnt+=(M-j); break; } } } //cout<<cnt<<endl; //cout<<N*M<<endl; cout<<setprecision(10)<<(double)(cnt)/(N*M)<<endl; return 0; }