์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ๋ฅ๋ฌ๋๊ธฐ์ด
- classification text
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ์ ๊ณต์
- dialogue state tracking
- 2020์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌํ๊ธฐ
- From Machine Reading Comprehension to Dialogue State Tracking: Bridging the Gap
- ๋ชจ๋์๋ฅ๋ฌ๋
- Python
- fasttext text classification ํ๊ธ
- ํ๋ก๊ทธ๋๋จธ์ค
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ์ ๊ณต์ํฉ๊ฒฉํ๊ธฐ
- MySQL
- ๋ฐฑ์ค
- ๋ฐ์ดํฐ ํฉ์ฑ
- Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking
- SUMBT:Slot-Utterance Matching for Universal and Scalable Belief Tracking
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ ์ฑ ์ถ์ฒ
- ์์ฐ์ด์ฒ๋ฆฌ ๋ ผ๋ฌธ ๋ฆฌ๋ทฐ
- nlp๋ ผ๋ฌธ๋ฆฌ๋ทฐ
- Few Shot Dialogue State Tracking using Meta-learning
- ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ ์์ ๋น
- ๊ฒ์์์ง
- ํ์ด์ฌ์ ํ์ด์ฌ๋ต๊ฒ
- few shot dst
- til
- How Much Knowledge Can You Pack Into the Parameters of a Language Model?
- DST zeroshot learning
- DST fewshot learning
- Leveraging Slot Descriptions for Zero-Shot Cross-Domain Dialogue State Tracking
- ๋ค์ด๋๋ฏน ํ๋ก๊ทธ๋๋ฐ
Archives
- Today
- Total
๐ฒ์๋ผ๋๋์ฒญ๋
Q4344 ํ๊ท ์ ๋๊ฒ ์ง ๋ณธ๋ฌธ
๋ฐ์ํ
Q4344 ํ๊ท ์ ๋๊ฒ ์ง
๊ฐ๋จํ๊ฒ ๋ฐฐ์ด์ ์ด์ฉํด์ ๋ฌธ์ ๋ฅผ ํ์๋ค.
package problem;//๋ํ์ ์๋ด๊ธฐ๋ค์ 90%๋ ์์ ์ด ๋ฐ์์ ํ๊ท ์ ๋๋๋ค๊ณ ์๊ฐํ๋ค. ๋น์ ์ ๊ทธ๋ค์๊ฒ ์ฌํ ์ง์ค์ ์๋ ค์ค์ผ ํ๋ค.import java.util.*;public class Q4344 {public static void main(String[] args) {Scanner scan = new Scanner(System.in);int num = scan.nextInt();for(int i=0; i<num; i++) {int temp2 = scan.nextInt();int[] arr = new int[temp2];int count=0;float sum=0;float average=0;//๋ชจ๋ ๊ฐ์ ์ด๋ ์ด์ ๋ด๊ณ ์ ์ฒดํฉ์ ๊ตฌํ๋ค.for(int j=0; j<temp2; j++) {arr[j] = scan.nextInt();sum += arr[j];}average = sum/temp2;for(int j=0; j<temp2; j++) {if(arr[j]>average) {count++;}}float ans = ((float)count/(float)temp2)*100;System.out.format("%.3f",ans);System.out.print("%\n");}}}
๋ฐ์ํ
'์๊ณ ๋ฆฌ์ฆ ๋ฌธ์ ํ์ด' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
array list์ Dfs, bfs(java) (0) | 2019.04.02 |
---|---|
array list๋ก ๊ตฌํํ graph (0) | 2019.04.02 |
์ธ์ array๋ก ๊ทธ๋ํ ๊ตฌํ(์๋ฐ) (0) | 2019.04.02 |
๋ฐฑ์ค ์๋ฐ Q1309 ๋๋ฌผ์ (0) | 2019.03.19 |
์๋ฐ์์ sort ํ๊ธฐ (0) | 2019.03.19 |