1.動機與分析目的 動機 南海主要位於中國南邊海域,被中國大陸、台灣、菲律賓群島、馬來半島及中南半島環繞。約超過280個島嶼、岩礁,這些島礁右被合稱南海諸島。2011年南海主權爭議升級後,菲律賓政府開始使用「西菲律賓海」的名稱,而越南基於地理位置將該海域稱之為東海。除了是海上各大運輸航道的必經之路(約佔全世界的1/3),同時也蘊藏豐富的石油和天然氣,且在軍事上有其特殊的戰略價值。目前處於複雜的主權爭議,它不僅涉及有關漁權,同時也涉及安全戰略的問題,中國、越南、馬來西亞、菲律賓等沿海國家均在此聲索主權。 近期周邊的國家搶主權之外,非周邊的國家則搶話語權。接下來2021年5月份,日本、美國、法國要在南海進行聯合軍演。另外,由於近年來中國大陸的共機繞台以及軍事擴張,對於擁有南海一部分主權的台灣(ex.太平島、中洲礁)也必須對此有所關心與警惕,因而對此進行研究。 2.分析目的 希望透過研究與COVID-19疫情重疊的時間區域,能發現社群媒體的角度,對於南海議題和疫情之間能有一些鮮為人知的關聯性。 3.資料收集 2020年初爆發疫情開始至2021年4月間,有關「南海」該關鍵字議題的相關新聞。主要新聞來源為:《聯合新聞網》,是由《聯合報》所經營的新聞資訊網站。中山大學政治學研究所劉正山教授,與資管系康藝晃教授的研究團隊,近來透過語料分析,科學化資料探勘「從民主的報導看四大報的個性」的結果表示,台灣前四大報分別有《聯合》、《中時》、《自由》、《蘋果》,雖然聯合報為前中國國民黨所設立的報紙,但其在政黨輪替前後,對於選前呼籲、選後評論,使用民主字句都展現一致邏輯性,顯現其媒體性格不因為政黨輪替而有不同的改變,相較於其他媒體角度客觀、中立而穩定,故選擇該媒體作為資料收集來源。(中山管理學院,https://www.cm.nsysu.edu.tw/p/406-1024-232815,r16.php?Lang=zh-tw,2020/04/28) 對可能有關「南海」議題新聞網的類別版進行爬蟲:全球、兩岸。
文章來源:聯合新聞網(兩岸、全球)。 資料時間:2020/01/01-2021/04/30。 共137篇。 關鍵字:南海。
Sys.setlocale(category = "LC_ALL", locale = "zh_TW.UTF-8") # 避免中文亂碼## Warning in Sys.setlocale(category = "LC_ALL", locale = "zh_TW.UTF-8"): 作業系統
## 回報無法實現設定語區為 "zh_TW.UTF-8" 的要求
library(dplyr)##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library(tidytext)
library(stringr)
library(ggplot2)
library(jiebaR)## Loading required package: jiebaRD
library(scales)
library(tidyr)
library(readr)##
## Attaching package: 'readr'
## The following object is masked from 'package:scales':
##
## col_factor
library(wordcloud)## Loading required package: RColorBrewer
library(textdata)
library(reshape2)##
## Attaching package: 'reshape2'
## The following object is masked from 'package:tidyr':
##
## smiths
library(ggraph)
require(data.table)## Loading required package: data.table
##
## Attaching package: 'data.table'
## The following objects are masked from 'package:reshape2':
##
## dcast, melt
## The following objects are masked from 'package:dplyr':
##
## between, first, last
require(wordcloud2)## Loading required package: wordcloud2
require(widyr)## Loading required package: widyr
require(igraph)## Loading required package: igraph
##
## Attaching package: 'igraph'
## The following object is masked from 'package:tidyr':
##
## crossing
## The following objects are masked from 'package:dplyr':
##
## as_data_frame, groups, union
## The following objects are masked from 'package:stats':
##
## decompose, spectrum
## The following object is masked from 'package:base':
##
## union
require(NLP)## Loading required package: NLP
##
## Attaching package: 'NLP'
## The following object is masked from 'package:ggplot2':
##
## annotate
require(knitr)## Loading required package: knitr
require(sqldf)## Loading required package: sqldf
## Loading required package: gsubfn
## Loading required package: proto
## Loading required package: RSQLite
csv <- fread("./data/data4_articleMetaData.csv", encoding = "UTF-8")%>%
select(artTitle,artDate,artTime,artUrl,sentence)
csv$artDate= csv$artDate %>% as.Date("%Y/%m/%d")
# 根據符號拆分
mask_sentences <- strsplit(csv$sentence,"[。!;?!?;,: ▪、/「」《》【】()]")
# 將每個句子與所屬的文章連結配對起來,整理成 dataframe
mask_sentences <- data.frame(
artTitle = rep(csv$artTitle, sapply(mask_sentences, length)),
commentDate = rep(csv$artDate, sapply(mask_sentences, length)),
artUrl = rep(csv$artUrl, sapply(mask_sentences, length)),
commentContent = unlist(mask_sentences)
) %>%
filter(!str_detect(commentContent, regex("^(\t|\n| )*$")))head(mask_sentences)## artTitle commentDate
## 1 武漢肺炎61歲死者 華南海鮮市場常客 2020-01-11
## 2 武漢肺炎61歲死者 華南海鮮市場常客 2020-01-11
## 3 武漢肺炎61歲死者 華南海鮮市場常客 2020-01-11
## 4 武漢肺炎61歲死者 華南海鮮市場常客 2020-01-11
## 5 武漢肺炎61歲死者 華南海鮮市場常客 2020-01-11
## 6 武漢肺炎61歲死者 華南海鮮市場常客 2020-01-11
## artUrl
## 1 https://udn.com/news/story/120675/4281503
## 2 https://udn.com/news/story/120675/4281503
## 3 https://udn.com/news/story/120675/4281503
## 4 https://udn.com/news/story/120675/4281503
## 5 https://udn.com/news/story/120675/4281503
## 6 https://udn.com/news/story/120675/4281503
## commentContent
## 1 武漢
## 2 不明原因肺炎
## 3 爆發至今
## 4 據官方綜合研判
## 5 初步診斷有新型冠狀病毒感染的肺炎病例41例
## 6 其中死亡1例
##讀取斷詞
mask_lexicon <- scan(file = "./data/user_dict.txt", what=character(),sep='\n',
encoding='utf-8',fileEncoding='utf-8')
##讀取停用字
stop_words <- scan(file = "./data/stop_words.txt", what=character(),sep='\n',
encoding='utf-8',fileEncoding='utf-8')## Warning in scan(file = "./data/stop_words.txt", what = character(), sep =
## "\n", : 輸入連結 './data/stop_words.txt' 中的輸入不正確
#顯示停用字
stop_words## [1] "," "?" "、" "。" "“" "”"
## [7] "《" "》" "!" "," ":" ";"
## [13] "?" "再" "本來" "是不是" "一個" "這種"
## [19] "人民" "末##末" "啊" "阿" "哎" "哎呀"
## [25] "哎喲" "唉" "我" "我們" "按" "按照"
## [31] "依照" "吧" "吧噠" "把" "罷了" "被"
## [37] "本" "本著" "比" "比方" "比如" "鄙人"
## [43] "彼" "彼此" "邊" "別" "別的" "別說"
## [49] "並" "並且" "不比" "不成" "不單" "不但"
## [55] "不獨" "不管" "不光" "不過" "不僅" "不拘"
## [61] "不論" "不怕" "不然" "不如" "不特" "不惟"
## [67] "不問" "不只" "朝" "朝著" "趁" "趁著"
## [73] "乘" "沖" "除" "除此之外" "除非" "除了"
## [79] "此" "此間" "此外" "從" "從而" "打"
## [85] "待" "但" "但是" "當" "當著" "到"
## [91] "得" "的" "的話" "等" "等等" "地"
## [97] "第" "叮咚" "對" "對於" "多" "多少"
## [103] "而" "而況" "而且" "而是" "而外" "而言"
## [109] "而已" "爾後" "反過來" "反過來說" "反之" "非但"
## [115] "非徒" "否則" "嘎" "嘎登" "該" "趕"
## [121] "個" "各" "各個" "各位" "各種" "各自"
## [127] "給" "根據" "跟" "故" "故此" "固然"
## [133] "關於" "管" "歸" "果然" "果真" "過"
## [139] "哈" "哈哈" "呵" "和" "何" "何處"
## [145] "何況" "何時" "嘿" "哼" "哼唷" "呼哧"
## [151] "乎" "嘩" "還是" "還有" "換句話說" "換言之"
## [157] "或" "或是" "或者" "極了" "及" "及其"
## [163] "及至" "即" "即便" "即或" "即令" "即若"
## [169] "即使" "幾" "幾時" "己" "既" "既然"
## [175] "既是" "繼而" "加之" "假如" "假若" "假使"
## [181] "鑒於" "將" "較" "較之" "叫" "接著"
## [187] "結果" "借" "緊接著" "進而" "盡" "儘管"
## [193] "經" "經過" "就" "就是" "就是說" "據"
## [199] "具體地說" "具體說來" "開始" "開外" "靠" "咳"
## [205] "可" "可見" "可是" "可以" "況且" "啦"
## [211] "來" "來著" "離" "例如" "哩" "連"
## [217] "連同" "兩者" "了" "臨" "另" "另外"
## [223] "另一方面" "論" "嘛" "嗎" "慢說" "漫說"
## [229] "冒" "麼" "每" "每當" "們" "莫若"
## [235] "某" "某個" "某些" "拿" "哪" "哪邊"
## [241] "哪兒" "哪個" "哪裏" "哪年" "哪怕" "哪天"
## [247] "哪些" "哪樣" "那" "那邊" "那兒" "那個"
## [253] "那會兒" "那裏" "那麼" "那麼些" "那麼樣" "那時"
## [259] "那些" "那樣" "乃" "乃至" "呢" "能"
## [265] "你" "你們" "您" "寧" "寧可" "寧肯"
## [271] "寧願" "哦" "嘔" "啪達" "旁人" "呸"
## [277] "憑" "憑藉" "其" "其次" "其二" "其他"
## [283] "其它" "其一" "其餘" "其中" "起" "起見"
## [289] "豈但" "恰恰相反" "前後" "前者" "且" "然而"
## [295] "然後" "然則" "讓" "人家" "任" "任何"
## [301] "任憑" "如" "如此" "如果" "如何" "如其"
## [307] "如若" "如上所述" "若" "若非" "若是" "啥"
## [313] "上下" "尚且" "設若" "設使" "甚而" "甚麼"
## [319] "甚至" "省得" "時候" "什麼" "什麼樣" "使得"
## [325] "是" "是的" "首先" "誰" "誰知" "順"
## [331] "順著" "似的" "雖" "雖然" "雖說" "雖則"
## [337] "隨" "隨著" "所" "所以" "他" "他們"
## [343] "他人" "它" "它們" "她" "她們" "倘"
## [349] "倘或" "倘然" "倘若" "倘使" "騰" "替"
## [355] "通過" "同" "同時" "哇" "萬一" "往"
## [361] "望" "為" "為何" "為了" "為什麼" "為著"
## [367] "餵" "嗡嗡" "我" "我們" "嗚" "嗚呼"
## [373] "烏乎" "無論" "無寧" "毋寧" "嘻" "嚇"
## [379] "相對而言" "像" "向" "向著" "噓" "呀"
## [385] "焉" "沿" "沿著" "要" "要不" "要不然"
## [391] "要不是" "要麼" "要是" "也" "也罷" "也好"
## [397] "一" "一般" "一旦" "一方面" "一來" "一切"
## [403] "一樣" "一則" "依" "依照" "矣" "以"
## [409] "以便" "以及" "以免" "以至" "以至於" "以致"
## [415] "抑或" "因" "因此" "因而" "因為" "喲"
## [421] "用" "由" "由此可見" "由於" "有" "有的"
## [427] "有關" "有些" "又" "於" "於是" "於是乎"
## [433] "與" "與此同時" "與否" "與其" "越是" "雲雲"
## [439] "哉" "再說" "再者" "在" "在下" "咱"
## [445] "咱們" "則" "怎" "怎麼" "怎麼辦" "怎麼樣"
## [451] "怎樣" "咋" "照" "照著" "者" "這"
## [457] "這邊" "這兒" "這個" "這會兒" "這就是說" "這裏"
## [463] "這麼" "這麼點兒" "這麼些" "這麼樣" "這時" "這些"
## [469] "這樣" "正如" "吱" "之" "之類" "之所以"
## [475] "之一" "只是" "只限" "只要" "只有" "至"
## [481] "至於" "諸位" "著" "著呢" "自" "自從"
## [487] "自個兒" "自各兒" "自己" "自家" "自身" "綜上所述"
## [493] "總的來看" "總的來說" "總的說來" "總而言之" "總之" "縱"
## [499] "縱令" "縱然" "縱使" "遵照" "作為" "兮"
## [505] "呃" "唄" "咚" "咦" "喏" "啐"
## [511] "喔唷"
jieba_tokenizer = worker(write = "NOFILE") #worker()
new_user_word(jieba_tokenizer, c(mask_lexicon))## [1] TRUE
chi_tokenizer <- function(t) {
lapply(t, function(x) {
if(nchar(x)>1){
tokens <- segment(x, jieba_tokenizer)
tokens <- tokens[!tokens %in% stop_words]
# 去掉字串長度爲1的詞彙
tokens <- tokens[nchar(tokens)>1]
return(tokens)
}
})
}mask_sentences$commentContent <- as.character (mask_sentences$commentContent)
mask_words <- mask_sentences %>%
unnest_tokens(word, commentContent, token=chi_tokenizer)
mask_words_Tedros<-mask_words%>%
##filter(artTitle %like% c('南海'))%>%
select(artTitle,commentDate,word)tokens_count_Tedros<-mask_words_Tedros%>%
#filter(commentDate>='2020/03/27')%>%
count(word, sort = TRUE)%>%
filter(n>10)%>%
##filter(word != '南海')%>%
head(100)
tokens_count_Tedros %>% wordcloud2()tokens_count_Tedros<-mask_words_Tedros%>%
#filter(commentDate>='2020/03/27')%>%
count(word, sort = TRUE)%>%
filter(n>10)%>%
filter(word != '南海')%>%
filter(word != '中國')%>%
filter(word != '美國')%>%
filter(word != '大陸')%>%
filter(word != '台灣')%>%
filter(word != '北京')%>%
filter(word != '菲律賓')%>%
head(50)
tokens_count_Tedros %>% wordcloud2()t1<-mask_words%>%
filter(word=='中國')%>%
filter(artTitle %like% c('南海'))%>%
filter(commentDate>='2020/01/01')%>%
count(commentDate)%>%
mutate(s='中國')
t2<-mask_words%>%
filter(word=='美國')%>%
filter(artTitle %like% c('南海'))%>%
filter(commentDate>='2020/01/01')%>%
count(commentDate)%>%
mutate(s='美國')
t3<-mask_words%>%
filter(word=='台灣')%>%
filter(artTitle %like% c('南海'))%>%
filter(commentDate>='2020/01/01')%>%
count(commentDate)%>%
mutate(s='台灣')
t11<-mask_words%>%
filter(word=='南海')%>%
filter(artTitle %like% c('南海'))%>%
filter(commentDate>='2020/01/01')%>%
count(commentDate)%>%
mutate(s='南海')rbind(t1,t2,t3,t11)%>%
ggplot()+
geom_line(aes(x=commentDate,y=n,colour=s))+
scale_x_date(breaks=date_breaks("30 days"),labels = date_format("%m/%d"))+
xlab("日期") +
ylab("出現次數")美國的部分,在2020年7、8月為第一波疫情高峰,在2020年11、12及2021年1月為第二波疫情高峰。相較於原本就訂好2020年8月17日於夏威夷舉行的環太平洋軍演,所牽涉到的南海議題較無直接相關性。環太平洋軍演是該年度的重大軍演,共有澳洲、汶萊、加拿大、法國、日本、紐西蘭、南韓、菲律賓、新加坡、美國等10國海軍,總計22艘艦艇、1 艘潛、各型戰艦,約5300名人員參加。美國軍方指出,由於受到COVID-19的影響,規模較以往來得小,進行多國演習的目的是為了面對假想敵中國有關領土海域的爭議,以因應未來的各種海上挑戰。除此之外,2020年上半年,美國在南海地區進行超過3000架次的空中軍事行動和60餘艘次的軍艦行動。7月,美國「尼米茲號」航母戰鬥群和「里根號」航母戰鬥群在南海海域展開演習,美國也多次派出B-1B戰略轟炸機、E-8C偵察機到南海上空。使得兩軍擦槍風險陡增,也是報導次數及國家關鍵字增加的主要原因。 中國的部分,在2020年3、4月染疫人口數最多,往後即被平定,剩下零星個案(但由於中國大陸資訊不透明的緣故,所以有待商榷)。但疫情的與南海也無直接的相關聯性,中國仍舊例行性的派出非軍事船隻前往南海戰略利益水域進行填海造陸,在沒有發生衝突也沒有損失外交顏面的狀況下,在南海主權爭端中佔了上風。無獨有偶,中國的山東海事局、海南海事局先後通報,解放軍將於2020年8月22日至26日、8月24日至29日,分別在黃海青島至連雲港以東海域、海南島東南部南海海域進行實彈軍事演訓活動。此外,唐山海事局也宣稱渤海內半徑25公里的扇形海域漁8月24日至9月30日執行實彈射擊活動,一般民眾禁止駛入。廣東海事局還發布公告表示,8月24日至29日將在廣東汕頭至汕尾間外海、東沙群島以北南海及粵東海域軍演。與美國為主的環太平洋軍演叫陣意味濃厚,也是相關報導數及國家關鍵字較多的主要原因。
article_count_by_date <- csv %>%
filter(artTitle %like% c('南海'))%>%
group_by(artDate) %>%
summarise(count = n()) %>%
#filter(count>2) %>% # 過濾出現太少次的字
arrange(desc(count))
head(article_count_by_date, 20)## # A tibble: 20 x 2
## artDate count
## <date> <int>
## 1 2020-07-14 6
## 2 2020-08-26 5
## 3 2020-08-27 5
## 4 2021-04-06 5
## 5 2020-07-15 4
## 6 2020-04-19 3
## 7 2020-07-06 3
## 8 2020-07-19 3
## 9 2020-07-26 3
## 10 2020-08-28 3
## 11 2021-04-20 3
## 12 2020-01-28 2
## 13 2020-07-04 2
## 14 2020-07-23 2
## 15 2020-08-03 2
## 16 2020-08-16 2
## 17 2020-09-03 2
## 18 2020-09-21 2
## 19 2020-10-14 2
## 20 2021-01-24 2
plot_date <-
# data
article_count_by_date %>%
# aesthetics
ggplot(aes(x = artDate, y = count)) +
# geometrics
geom_line(color = "#00AFBB", size = 2) +
geom_vline(xintercept = as.numeric(as.Date("2020-01-01")), col='red') +
# coordinates
scale_x_date(labels = date_format("%Y/%m/%d")) +
ggtitle("南海新聞熱度") +
xlab("日期") +
ylab("數量") #+
# theme
# theme(text = element_text(family = "Heiti TC Light")) #加入中文字型設定,避免中文字顯示錯誤。
plot_date ## 檢視文章篇數最多的五天
article_count_by_date %>% top_n(5)## Selecting by count
## # A tibble: 5 x 2
## artDate count
## <date> <int>
## 1 2020-07-14 6
## 2 2020-08-26 5
## 3 2020-08-27 5
## 4 2021-04-06 5
## 5 2020-07-15 4
tokens_by_date <- mask_words %>%
filter(artTitle %like% c('南海'))%>%
count(commentDate, word, sort = TRUE)
tokens_by_date %>%
filter(word != "南海" & word != "大陸" & word != "台灣" & word != "美國" & word != "中國") %>%
filter(commentDate == as.Date("2020-07-14") |
commentDate == as.Date("2020-08-26") |
commentDate == as.Date("2020-08-27") |
commentDate == as.Date("2020-07-15") |
commentDate == as.Date("2021-04-06")) %>%
group_by(commentDate) %>%
top_n(7, n) %>%
ungroup() %>%
mutate(word = reorder(word, n)) %>%
ggplot(aes(x=word, y=n, fill = commentDate)) +
geom_col(show.legend = FALSE) +
labs(x = NULL, y = NULL) +
facet_wrap(~commentDate, scales="free", ncol = 2) +
coord_flip()+
theme(text = element_text(family = "Heiti TC Light"))## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family not
## found in Windows font database
data = mask_words %>%
filter(artTitle %like% c('南海'))%>%
group_by(word,commentDate) %>%
summarise( count = n() )## `summarise()` has grouped output by 'word'. You can override using the `.groups` argument.
word_count <- data %>%
select(commentDate,word,count) %>%
group_by(word) %>%
summarise(count = sum(count)) %>%
filter(count>2) %>% # 過濾出現太少次的字
arrange(desc(count))
word_count## # A tibble: 2,023 x 2
## word count
## <chr> <int>
## 1 南海 878
## 2 中國 681
## 3 美國 585
## 4 表示 266
## 5 大陸 203
## 6 國家 164
## 7 軍事 158
## 8 報導 158
## 9 海域 151
## 10 美軍 142
## # ... with 2,013 more rows
# 正向字典txt檔
P <- read_file("./data/positive.txt")
# 負向字典txt檔
N <- read_file("./data/negative.txt")
P = strsplit(P, "[,]")[[1]]
N = strsplit(N, "[,]")[[1]]
P = data.frame(word = P, sentiment = "positive")
N = data.frame(word = N, sentiment = "negative")
# 把兩個字典拼在一起
LIWC = rbind(P, N)
head(LIWC)## word sentiment
## 1 一流 positive
## 2 下定決心 positive
## 3 不拘小節 positive
## 4 不費力 positive
## 5 不錯 positive
## 6 主動 positive
word_count %>% inner_join(LIWC)## Joining, by = "word"
## # A tibble: 102 x 3
## word count sentiment
## <chr> <int> <chr>
## 1 問題 94 negative
## 2 自由 78 positive
## 3 打擊 74 negative
## 4 安全 73 positive
## 5 和平 70 positive
## 6 反對 38 negative
## 7 威脅 36 negative
## 8 挑釁 36 negative
## 9 破壞 35 negative
## 10 重要 30 positive
## # ... with 92 more rows
tokens_by_date %>%
inner_join(LIWC) %>%
select(word) %>%
inner_join(LIWC)## Joining, by = "word"
## Joining, by = "word"
## word sentiment
## 1 問題 negative
## 2 打擊 negative
## 3 打擊 negative
## 4 問題 negative
## 5 反對 negative
## 6 和平 positive
## 7 自由 positive
## 8 打擊 negative
## 9 自由 positive
## 10 安全 positive
## 11 自由 positive
## 12 挑釁 negative
## 13 衝突 negative
## 14 問題 negative
## 15 和平 positive
## 16 拒絕 negative
## 17 堅決 positive
## 18 和平 positive
## 19 威脅 negative
## 20 破壞 negative
## 21 問題 negative
## 22 戰爭 negative
## 23 問題 negative
## 24 協助 positive
## 25 譴責 negative
## 26 反對 negative
## 27 打擊 negative
## 28 對抗 negative
## 29 攻擊 negative
## 30 打擊 negative
## 31 解決 positive
## 32 重要 positive
## 33 死亡 negative
## 34 自由 positive
## 35 高階 positive
## 36 打擊 negative
## 37 破壞 negative
## 38 挑釁 negative
## 39 問題 negative
## 40 安全 positive
## 41 問題 negative
## 42 支持 positive
## 43 衝突 negative
## 44 打擊 negative
## 45 破壞 negative
## 46 和平 positive
## 47 和平 positive
## 48 侵犯 negative
## 49 安全 positive
## 50 打擊 negative
## 51 打擊 negative
## 52 自由 positive
## 53 問題 negative
## 54 自由 positive
## 55 不要 negative
## 56 問題 negative
## 57 問題 negative
## 58 爆發 negative
## 59 挑釁 negative
## 60 自由 positive
## 61 打擊 negative
## 62 安全 positive
## 63 徒勞無功 negative
## 64 破壞 negative
## 65 合法 positive
## 66 批評 negative
## 67 威脅 negative
## 68 指責 negative
## 69 脅迫 negative
## 70 控制 negative
## 71 無理 negative
## 72 希望 positive
## 73 炫耀 negative
## 74 自由 positive
## 75 入侵 negative
## 76 和平 positive
## 77 希望 positive
## 78 挑釁 negative
## 79 重要 positive
## 80 反對 negative
## 81 重要 positive
## 82 脅迫 negative
## 83 問題 negative
## 84 禁止 negative
## 85 侵犯 negative
## 86 紛爭 negative
## 87 問題 negative
## 88 強烈 negative
## 89 緊張 negative
## 90 和平 positive
## 91 威脅 negative
## 92 警告 negative
## 93 批評 negative
## 94 問題 negative
## 95 不顧 negative
## 96 安全 positive
## 97 防衛 negative
## 98 問題 negative
## 99 安全 positive
## 100 傷亡 negative
## 101 失控 negative
## 102 問題 negative
## 103 自由 positive
## 104 防衛 negative
## 105 承諾 positive
## 106 衝突 negative
## 107 和平 positive
## 108 控制 negative
## 109 反對 negative
## 110 威脅 negative
## 111 問題 negative
## 112 打擊 negative
## 113 有效 positive
## 114 防衛 negative
## 115 和平 positive
## 116 希望 positive
## 117 承諾 positive
## 118 信任 positive
## 119 解決 positive
## 120 支持 positive
## 121 安全 positive
## 122 自由 positive
## 123 和平 positive
## 124 治療 positive
## 125 風險 negative
## 126 患病 negative
## 127 和平 positive
## 128 挑釁 negative
## 129 自由 positive
## 130 防衛 negative
## 131 值得 positive
## 132 爆發 negative
## 133 和平 positive
## 134 自由 positive
## 135 控制 negative
## 136 自由 positive
## 137 問題 negative
## 138 打仗 negative
## 139 不要 negative
## 140 挑戰 positive
## 141 緊張 negative
## 142 戰鬥 negative
## 143 反對 negative
## 144 安全 positive
## 145 自由 positive
## 146 強烈 negative
## 147 嚴重 negative
## 148 防衛 negative
## 149 不要 negative
## 150 不穩 negative
## 151 安全 positive
## 152 批評 negative
## 153 指責 negative
## 154 保護 positive
## 155 挑釁 negative
## 156 重要 positive
## 157 強硬 negative
## 158 麻煩 negative
## 159 勝利 positive
## 160 擁護 positive
## 161 騷擾 negative
## 162 干擾 negative
## 163 可悲 negative
## 164 承諾 positive
## 165 挑釁 negative
## 166 堅定 positive
## 167 猛烈 negative
## 168 違背 negative
## 169 耀眼 positive
## 170 決定 positive
## 171 問題 negative
## 172 對抗 negative
## 173 錯誤 negative
## 174 控制 negative
## 175 希望 positive
## 176 危險 negative
## 177 禁止 negative
## 178 緊張 negative
## 179 不要 negative
## 180 支持 positive
## 181 精心 positive
## 182 反對 negative
## 183 和平 positive
## 184 打破 negative
## 185 相信 positive
## 186 強硬 negative
## 187 失控 negative
## 188 敏感 negative
## 189 警告 negative
## 190 自由 positive
## 191 風險 negative
## 192 傷害 negative
## 193 幫助 positive
## 194 協助 positive
## 195 堅決 positive
## 196 安全 positive
## 197 侵犯 negative
## 198 指責 negative
## 199 挑戰 positive
## 200 炫耀 negative
## 201 破壞 negative
## 202 損害 negative
## 203 對抗 negative
## 204 戰爭 negative
## 205 謹慎 positive
## 206 嚴格 negative
## 207 自由 positive
## 208 威脅 negative
## 209 挑戰 positive
## 210 確定 positive
## 211 和平 positive
## 212 挑釁 negative
## 213 真實 positive
## 214 堅定 positive
## 215 和平 positive
## 216 炫耀 negative
## 217 挑戰 positive
## 218 挑釁 negative
## 219 堅定 positive
## 220 不要 negative
## 221 和平 positive
## 222 堅定 positive
## 223 安全 positive
## 224 問題 negative
## 225 豐富 positive
## 226 和平 positive
## 227 挑釁 negative
## 228 堅定 positive
## 229 最好 positive
## 230 慶祝 positive
## 231 安全 positive
## 232 相信 positive
## 233 重要 positive
## 234 風險 negative
## 235 優勢 positive
## 236 安心 positive
## 237 同意 positive
## 238 拒絕 negative
## 239 重要 positive
## 240 自我 negative
## 241 威脅 negative
## 242 威脅 negative
## 243 容易 positive
## 244 安全 positive
## 245 緊張 negative
## 246 安全 positive
## 247 威脅 negative
## 248 合法 positive
## 249 承諾 positive
## 250 挑戰 positive
## 251 堅定 positive
## 252 強烈 negative
## 253 控制 negative
## 254 摧毀 negative
## 255 不要 negative
## 256 反對 negative
## 257 和平 positive
## 258 和平 positive
## 259 容易 positive
## 260 衝突 negative
## 261 安全 positive
## 262 自由 positive
## 263 戰鬥 negative
## 264 不要 negative
## 265 希望 positive
## 266 破壞 negative
## 267 問題 negative
## 268 不要 negative
## 269 控制 negative
## 270 安全 positive
## 271 重要 positive
## 272 控制 negative
## 273 躲避 negative
## 274 安全 positive
## 275 自由 positive
## 276 承諾 positive
## 277 拒絕 negative
## 278 戰鬥 negative
## 279 警告 negative
## 280 攻擊 negative
## 281 緊張 negative
## 282 希望 positive
## 283 對抗 negative
## 284 確定 positive
## 285 抗議 negative
## 286 決心 positive
## 287 相信 positive
## 288 理性 positive
## 289 單獨 negative
## 290 樂觀 positive
## 291 謹慎 positive
## 292 願意 positive
## 293 同意 positive
## 294 有利 positive
## 295 肯定 positive
## 296 重要 positive
## 297 貢獻 positive
## 298 創造 positive
## 299 鼓勵 positive
## 300 和平 positive
## 301 貢獻 positive
## 302 尊重 positive
## 303 豐富 positive
## 304 分享 positive
## 305 治癒 positive
## 306 控制 negative
## 307 簡單 positive
## 308 反對 negative
## 309 支持 positive
## 310 合法 positive
## 311 挑戰 positive
## 312 警告 negative
## 313 支持 positive
## 314 成功 positive
## 315 有效 positive
## 316 決心 positive
## 317 保護 positive
## 318 破壞 negative
## 319 貢獻 positive
## 320 堅定 positive
## 321 感謝 positive
## 322 熱烈 positive
## 323 艱困 negative
## 324 讚賞 positive
## 325 否認 negative
## 326 拒絕 negative
## 327 腐臭 negative
## 328 驚人 positive
## 329 驚人 negative
## 330 驚人 positive
## 331 驚人 negative
## 332 收穫 positive
## 333 自由 positive
## 334 攻擊 negative
## 335 和平 positive
## 336 威脅 negative
## 337 挑釁 negative
## 338 警告 negative
## 339 死亡 negative
## 340 防衛 negative
## 341 戰鬥 negative
## 342 爆發 negative
## 343 安全 positive
## 344 自我 negative
## 345 抗議 negative
## 346 決定 positive
## 347 侵犯 negative
## 348 破壞 negative
## 349 問題 negative
## 350 尊重 positive
## 351 嚴重 negative
## 352 騷擾 negative
## 353 干擾 negative
## 354 才能 positive
## 355 分裂 negative
## 356 安全 positive
## 357 自在 positive
## 358 攻擊 negative
## 359 威脅 negative
## 360 挑釁 negative
## 361 徒勞 negative
## 362 破壞 negative
## 363 偏見 negative
## 364 問題 negative
## 365 惡意 negative
## 366 損害 negative
## 367 違背 negative
## 368 隔離 negative
## 369 幫助 positive
## 370 嚴重 negative
## 371 支持 positive
## 372 安全 positive
## 373 死亡 negative
## 374 侵略 negative
## 375 威脅 negative
## 376 恐嚇 negative
## 377 清楚 positive
## 378 爆發 negative
## 379 犧牲 negative
## 380 支持 positive
## 381 打擊 negative
## 382 安全 positive
## 383 死亡 negative
## 384 承諾 positive
## 385 敏捷 positive
## 386 遭受 negative
## 387 騷擾 negative
## 388 靈活 positive
## 389 決定 positive
## 390 活躍 positive
## 391 重要 positive
## 392 焦躁 negative
## 393 隔離 negative
## 394 緊張 negative
## 395 支持 positive
## 396 安全 positive
## 397 抨擊 negative
## 398 放心 positive
## 399 挑戰 positive
## 400 流行 positive
## 401 脅迫 negative
## 402 控制 negative
## 403 緊張 negative
## 404 衝突 negative
## 405 受害 negative
## 406 爆發 negative
## 407 支持 positive
## 408 自信 positive
## 409 挑釁 negative
## 410 損害 negative
## 411 適當 positive
## 412 嚴重 negative
## 413 合法 positive
## 414 安全 positive
## 415 自由 positive
## 416 清楚 positive
## 417 控制 negative
## 418 統治 negative
## 419 禁止 negative
## 420 不利 negative
## 421 自由 positive
## 422 和平 positive
## 423 承諾 positive
## 424 破壞 negative
## 425 脅迫 negative
## 426 違背 negative
## 427 緊張 negative
## 428 自信 positive
## 429 承諾 positive
## 430 拒絕 negative
## 431 魄力 positive
## 432 戰鬥 negative
## 433 鎮壓 negative
## 434 支持 positive
## 435 安全 positive
## 436 自由 positive
## 437 批評 negative
## 438 決心 positive
## 439 威脅 negative
## 440 指責 negative
## 441 單獨 negative
## 442 精確 positive
## 443 緊張 negative
## 444 緊繃 negative
## 445 優勢 positive
## 446 分享 positive
## 447 防衛 negative
## 448 承諾 positive
## 449 信任 positive
## 450 威脅 negative
## 451 脅迫 negative
## 452 貢獻 positive
## 453 對抗 negative
## 454 緊張 negative
## 455 譴責 negative
## 456 安全 positive
## 457 批評 negative
## 458 挑釁 negative
## 459 緊張 negative
## 460 引人注目 positive
## 461 希望 positive
## 462 重要 positive
## 463 弱點 negative
## 464 優勢 positive
## 465 打擊 negative
## 466 正當 positive
## 467 防衛 negative
## 468 冒險 positive
## 469 脅迫 negative
## 470 堅決 positive
## 471 尊重 positive
## 472 無理 negative
## 473 損害 negative
## 474 對抗 negative
## 475 衝擊 negative
## 476 干擾 negative
## 477 不要 negative
## 478 支持 positive
## 479 打擊 negative
## 480 協助 positive
## 481 承諾 positive
## 482 抵制 negative
## 483 挑戰 positive
## 484 歪曲 negative
## 485 恐嚇 negative
## 486 破壞 negative
## 487 強迫 negative
## 488 淹沒 negative
## 489 統治 negative
## 490 軟弱 negative
## 491 尊重 positive
## 492 惡意 negative
## 493 無視 negative
## 494 傷害 negative
## 495 解決 positive
## 496 違法 negative
## 497 對抗 negative
## 498 衝突 negative
## 499 錯誤 negative
## 500 壓力 negative
## 501 幫助 positive
## 502 濫用 negative
## 503 豐富 positive
## 504 贏得 positive
## 505 不受 negative
## 506 不要 negative
## 507 合法 positive
## 508 合理 positive
## 509 批評 negative
## 510 攻擊 negative
## 511 良好 positive
## 512 放棄 negative
## 513 侵犯 negative
## 514 指責 negative
## 515 挑戰 positive
## 516 脅迫 negative
## 517 動盪 negative
## 518 清楚 positive
## 519 麻煩 negative
## 520 激烈 negative
## 521 錯誤 negative
## 522 壓制 negative
## 523 侵犯 negative
## 524 重要 positive
## 525 堅決 positive
## 526 付出 positive
## 527 合法 positive
## 528 同意 positive
## 529 安全 positive
## 530 有用 positive
## 531 有效 positive
## 532 否定 negative
## 533 希望 positive
## 534 批判 negative
## 535 抗爭 negative
## 536 防衛 negative
## 537 坦誠 positive
## 538 侵略 negative
## 539 保護 positive
## 540 指責 negative
## 541 值得 positive
## 542 容易 positive
## 543 控制 negative
## 544 敏感 negative
## 545 清楚 positive
## 546 報復 negative
## 547 溫和 positive
## 548 禁止 negative
## 549 疑慮 negative
## 550 擔心 negative
## 551 謹慎 positive
## 552 壞事 negative
## 553 懷念 positive
## 554 爆發 negative
## 555 關心 positive
## 556 警告 negative
## 557 反對 negative
## 558 打擊 negative
## 559 自由 positive
## 560 協助 positive
## 561 威脅 negative
## 562 重要 positive
## 563 損害 negative
## 564 緊張 negative
## 565 戰鬥 negative
## 566 警告 negative
## 567 反對 negative
## 568 相信 positive
## 569 風險 negative
## 570 破壞 negative
## 571 問題 negative
## 572 控制 negative
## 573 解決 positive
## 574 緊張 negative
## 575 干擾 negative
## 576 安全 positive
## 577 自由 positive
## 578 和平 positive
## 579 挑釁 negative
## 580 降低 negative
## 581 緊張 negative
## 582 分裂 negative
## 583 主動 positive
## 584 困難 negative
## 585 決心 positive
## 586 放棄 negative
## 587 信任 positive
## 588 容易 positive
## 589 破壞 negative
## 590 堅決 positive
## 591 報復 negative
## 592 尊嚴 positive
## 593 對抗 negative
## 594 榮譽 positive
## 595 衝突 negative
## 596 壓力 negative
## 597 願意 positive
## 598 安全 positive
## 599 自由 positive
## 600 異常 negative
## 601 解決 positive
## 602 警告 negative
## 603 決定 positive
## 604 挑戰 positive
## 605 矛盾 negative
## 606 死亡 negative
## 607 攻擊 negative
## 608 和平 positive
## 609 承諾 positive
## 610 清楚 positive
## 611 尊重 positive
## 612 答應 positive
## 613 解決 positive
## 614 違背 negative
## 615 緊張 negative
## 616 戰爭 negative
## 617 和平 positive
## 618 問題 negative
## 619 清楚 positive
## 620 尊重 positive
## 621 解決 positive
## 622 贊成 positive
## 623 願意 positive
## 624 才能 positive
## 625 真實 positive
## 626 支持 positive
## 627 付出 positive
## 628 安全 positive
## 629 死亡 negative
## 630 自由 positive
## 631 防衛 negative
## 632 承諾 positive
## 633 侵略 negative
## 634 威脅 negative
## 635 破壞 negative
## 636 強健 positive
## 637 惡化 negative
## 638 憂慮 negative
## 639 衝突 negative
## 640 嚴厲 negative
## 641 警告 negative
## 642 中斷 negative
## 643 分歧 negative
## 644 打擊 negative
## 645 危險 negative
## 646 死亡 negative
## 647 困難 negative
## 648 拒絕 negative
## 649 風險 negative
## 650 容易 positive
## 651 問題 negative
## 652 強硬 negative
## 653 緊張 negative
## 654 衝突 negative
## 655 謹慎 positive
## 656 干擾 negative
## 657 打擊 negative
## 658 死亡 negative
## 659 自由 positive
## 660 和平 positive
## 661 消極 negative
## 662 問題 negative
## 663 緊張 negative
## 664 禁止 negative
## 665 仔細 positive
## 666 有助 positive
## 667 批評 negative
## 668 不顧 negative
## 669 支持 positive
## 670 正當 positive
## 671 安全 positive
## 672 希望 positive
## 673 和平 positive
## 674 侵犯 negative
## 675 指責 negative
## 676 挑釁 negative
## 677 破壞性 negative
## 678 貪汙 negative
## 679 尊重 positive
## 680 腐敗 negative
## 681 誤解 negative
## 682 駁斥 negative
## 683 衝突 negative
## 684 警告 negative
## 685 才能 positive
## 686 不滿 negative
## 687 支持 positive
## 688 打擊 negative
## 689 自由 positive
## 690 否認 negative
## 691 希望 positive
## 692 批評 negative
## 693 攻擊 negative
## 694 決定 positive
## 695 防衛 negative
## 696 承諾 positive
## 697 風險 negative
## 698 缺乏 negative
## 699 清楚 positive
## 700 粗暴 negative
## 701 尊重 positive
## 702 駁斥 negative
## 703 積極 positive
## 704 關心 positive
## 705 警告 negative
## 706 不顧 negative
## 707 反對 negative
## 708 付出 positive
## 709 同意 positive
## 710 自由 positive
## 711 攻擊 negative
## 712 決心 positive
## 713 協助 positive
## 714 抵制 negative
## 715 約束 negative
## 716 負擔 negative
## 717 風險 negative
## 718 脅迫 negative
## 719 高階 positive
## 720 問題 negative
## 721 堅決 positive
## 722 野蠻 negative
## 723 麻煩 negative
## 724 無力 negative
## 725 債務 negative
## 726 傷害 negative
## 727 禁止 negative
## 728 緊張 negative
## 729 衝突 negative
## 730 壓力 negative
## 731 壓制 negative
## 732 幫助 positive
## 733 爆發 negative
## 734 上當 negative
## 735 不安 negative
## 736 分裂 negative
## 737 安全 positive
## 738 防衛 negative
## 739 風險 negative
## 740 堅定 positive
## 741 敏感 negative
## 742 麻煩 negative
## 743 緊張 negative
## 744 攪亂 negative
## 745 反對 negative
## 746 安全 positive
## 747 風險 negative
## 748 破壞 negative
## 749 理性 positive
## 750 衝突 negative
## 751 干擾 negative
## 752 危險 negative
## 753 希望 positive
## 754 承諾 positive
## 755 放棄 negative
## 756 重要 positive
## 757 風險 negative
## 758 破壞 negative
## 759 問題 negative
## 760 尊重 positive
## 761 期盼 positive
## 762 解決 positive
## 763 違背 negative
## 764 對抗 negative
## 765 緊張 negative
## 766 優勢 positive
## 767 安全 positive
## 768 投入 positive
## 769 抨擊 negative
## 770 威脅 negative
## 771 流行 positive
## 772 惡劣 negative
## 773 智能 positive
## 774 順利 positive
## 775 優惠 positive
## 776 優勢 positive
## 777 嚴重 negative
## 778 反對 negative
## 779 安全 positive
## 780 和平 positive
## 781 理性 positive
## 782 反對 negative
## 783 打擊 negative
## 784 合法 positive
## 785 合理 positive
## 786 安全 positive
## 787 攻擊 negative
## 788 決心 positive
## 789 狂熱 negative
## 790 承諾 positive
## 791 威脅 negative
## 792 指責 negative
## 793 問題 negative
## 794 堅決 positive
## 795 違背 negative
## 796 投入 positive
## 797 緊張 negative
## 798 平穩 positive
## 799 災難 negative
## 800 和平 positive
## 801 動盪 negative
## 802 堅定 positive
## 803 強烈 negative
## 804 對抗 negative
## 805 反對 negative
## 806 安全 positive
## 807 堅決 positive
## 808 譴責 negative
## 809 支持 positive
## 810 正當 positive
## 811 安全 positive
## 812 決定 positive
## 813 和平 positive
## 814 解決 positive
## 815 幫助 positive
## 816 願意 positive
## 817 歡迎 positive
## 818 讚賞 positive
## 819 反對 negative
## 820 平靜 positive
## 821 打擊 negative
## 822 自由 positive
## 823 果斷 positive
## 824 炫耀 negative
## 825 風險 negative
## 826 破壞 negative
## 827 理性 positive
## 828 緊張 negative
## 829 衝突 negative
## 830 合法 positive
## 831 攻擊 negative
## 832 承諾 positive
## 833 勇敢 positive
## 834 反對 negative
## 835 批評 negative
## 836 紛爭 negative
## 837 強烈 negative
## 838 入侵 negative
## 839 危險 negative
## 840 有效 positive
## 841 侵犯 negative
## 842 猛烈 negative
## 843 減弱 negative
## 844 戰爭 negative
## 845 爆發 negative
## 846 協助 positive
## 847 不要 negative
## 848 分享 positive
## 849 仔細 positive
## 850 情緒 negative
## 851 理性 positive
## 852 理智 positive
## 853 理想 positive
## 854 棘手 negative
## 855 嚴格 negative
## 856 不要 negative
## 857 打擊 negative
## 858 同意 positive
## 859 希望 positive
## 860 攻擊 negative
## 861 和平 positive
## 862 侵略 negative
## 863 威脅 negative
## 864 致命 negative
## 865 最佳 positive
## 866 解決 positive
## 867 對抗 negative
## 868 擔心 negative
## 869 警告 negative
## 870 安全 positive
## 871 侵擾 negative
## 872 很棒 positive
## 873 挑戰 positive
## 874 重要 positive
## 875 問題 negative
## 876 優勢 positive
## 877 安全 positive
## 878 決心 positive
## 879 決定 positive
## 880 保證 positive
## 881 信心 positive
## 882 挑戰 positive
## 883 迫害 negative
## 884 破壞 negative
## 885 壓力 negative
## 886 干擾 negative
## 887 不安 negative
## 888 支持 positive
## 889 安全 positive
## 890 自由 positive
## 891 抗議 negative
## 892 決定 positive
## 893 挑戰 positive
## 894 挑釁 negative
## 895 重要 positive
## 896 降低 negative
## 897 堅強 positive
## 898 順利 positive
## 899 違抗 negative
## 900 緊張 negative
## 901 戰爭 negative
## 902 幫助 positive
## 903 決心 positive
## 904 侵略 negative
## 905 破壞 negative
## 906 友善 positive
## 907 妄想 negative
## 908 風險 negative
## 909 焦慮 negative
## 910 嚴重 negative
## 911 反駁 negative
## 912 打擊 negative
## 913 自由 positive
## 914 批評 negative
## 915 指責 negative
## 916 挑釁 negative
## 917 破壞 negative
## 918 敏感 negative
## 919 批評 negative
## 920 侵犯 negative
## 921 堅決 positive
## 922 擾亂 negative
## 923 嚴重 negative
## 924 警告 negative
## 925 不滿 negative
## 926 反駁 negative
## 927 合法 positive
## 928 自由 positive
## 929 抨擊 negative
## 930 衝突 negative
## 931 豐富 positive
## 932 不受 negative
## 933 合理 positive
## 934 放棄 negative
## 935 挑戰 positive
## 936 脅迫 negative
## 937 不要 negative
## 938 仁愛 positive
## 939 主動 positive
## 940 投入 positive
## 941 清楚 positive
## 942 暴力 negative
## 943 衝突 negative
## 944 譴責 negative
## 945 打擊 negative
## 946 安全 positive
## 947 安寧 positive
## 948 希望 positive
## 949 決心 positive
## 950 破壞 negative
## 951 問題 negative
## 952 堅決 positive
## 953 尊重 positive
## 954 成功 positive
## 955 改善 positive
## 956 放棄 negative
## 957 重要 positive
## 958 迴避 negative
## 959 控制 negative
## 960 最好 positive
## 961 最佳 positive
## 962 傷害 negative
## 963 對抗 negative
## 964 戰爭 negative
## 965 壓力 negative
## 966 願意 positive
## 967 嚴重 negative
## 968 反駁 negative
## 969 支持 positive
## 970 批評 negative
## 971 攻擊 negative
## 972 公正 positive
## 973 分歧 negative
## 974 安全 positive
## 975 有效 positive
## 976 自由 positive
## 977 和平 positive
## 978 真實 positive
## 979 偏見 negative
## 980 復甦 positive
## 981 對抗 negative
## 982 衝突 negative
## 983 擾亂 negative
## 984 分歧 negative
## 985 安全 positive
## 986 敏感 negative
## 987 禁止 negative
## 988 支持 positive
## 989 希望 positive
## 990 決心 positive
## 991 保護 positive
## 992 信心 positive
## 993 威脅 negative
## 994 重要 positive
## 995 問題 negative
## 996 對抗 negative
## 997 興趣 positive
## 998 反對 negative
## 999 自由 positive
## 1000 希望 positive
## 1001 抗議 negative
## 1002 侵害 negative
## 1003 威脅 negative
## 1004 堅決 positive
## 1005 控訴 negative
## 1006 敏感 negative
## 1007 惡劣 negative
## 1008 躲避 negative
## 1009 緊張 negative
## 1010 入侵 negative
## 1011 反駁 negative
## 1012 自由 positive
## 1013 拒絕 negative
## 1014 侵犯 negative
## 1015 降低 negative
## 1016 情緒 negative
## 1017 理性 positive
## 1018 傻瓜 negative
## 1019 反對 negative
## 1020 失敗 negative
## 1021 信心 positive
## 1022 脅迫 negative
## 1023 清楚 positive
## 1024 無視 negative
## 1025 對抗 negative
## 1026 整齊 positive
## 1027 壓力 negative
## 1028 入侵 negative
## 1029 不顧 negative
## 1030 反對 negative
## 1031 反駁 negative
## 1032 同意 positive
## 1033 抗議 negative
## 1034 侵犯 negative
## 1035 保證 positive
## 1036 威脅 negative
## 1037 指責 negative
## 1038 挑戰 positive
## 1039 紛爭 negative
## 1040 高興 positive
## 1041 堅決 positive
## 1042 強硬 negative
## 1043 復甦 positive
## 1044 無力 negative
## 1045 無效 negative
## 1046 傻瓜 negative
## 1047 溫和 positive
## 1048 解決 positive
## 1049 戰爭 negative
## 1050 擁抱 positive
## 1051 激怒 negative
## 1052 壓迫 negative
## 1053 譴責 negative
## 1054 安全 positive
## 1055 自由 positive
## 1056 希望 positive
## 1057 投入 positive
## 1058 承諾 positive
## 1059 重要 positive
## 1060 緊繃 negative
## 1061 錯誤 negative
## 1062 安全 positive
## 1063 抗議 negative
## 1064 攻擊 negative
## 1065 承諾 positive
## 1066 威脅 negative
## 1067 創造 positive
## 1068 反對 negative
## 1069 禁止 negative
## 1070 警告 negative
## 1071 真實 positive
## 1072 敏感 negative
## 1073 不利 negative
## 1074 不足 negative
## 1075 分歧 negative
## 1076 矛盾 negative
## 1077 批評 negative
## 1078 抗議 negative
## 1079 拒絕 negative
## 1080 放棄 negative
## 1081 爭吵 negative
## 1082 保證 positive
## 1083 挑戰 positive
## 1084 突出 positive
## 1085 值得 positive
## 1086 敏感 negative
## 1087 軟弱 negative
## 1088 麻煩 negative
## 1089 遊戲 positive
## 1090 衝突 negative
## 1091 積極 positive
## 1092 興趣 positive
## 1093 活躍 positive
data %>%
select(word) %>%
inner_join(LIWC)## Joining, by = "word"
## # A tibble: 1,091 x 2
## # Groups: word [268]
## word sentiment
## <chr> <chr>
## 1 入侵 negative
## 2 入侵 negative
## 3 入侵 negative
## 4 入侵 negative
## 5 上當 negative
## 6 干擾 negative
## 7 干擾 negative
## 8 干擾 negative
## 9 干擾 negative
## 10 干擾 negative
## # ... with 1,081 more rows
sentiment_count = sqldf("select commentDate,COUNT(count) count ,sentiment from data
inner join LIWC on data.word = LIWC.word
group by commentDate" )sentiment_count %>%
ggplot()+
geom_line(aes(x=commentDate,y=count,colour=sentiment))LIWC_word_counts <- data %>%
filter(commentDate < '2021/4/30') %>%
inner_join(LIWC) %>%
count(word, sentiment, sort = TRUE) %>%
ungroup()## Joining, by = "word"
LIWC_word_counts %>%
group_by(sentiment) %>%
top_n(10) %>%
ungroup() %>%
mutate(word = reorder(word, n)) %>%
ggplot(aes(word, n, fill = sentiment)) +
geom_col(show.legend = FALSE) +
facet_wrap(~sentiment, scales = "free_y") +
labs(y = "Contribution to sentiment",
x = NULL) +
theme(text=element_text(size=14))+
coord_flip()## Selecting by n
# 建立jieba_bigram
jieba_tokenizer = worker()
new_user_word(jieba_tokenizer, c(mask_lexicon))## [1] TRUE
jieba_bigram <- function(t) {
lapply(t, function(x) {
if(nchar(x)>1){
tokens <- segment(x, jieba_tokenizer)
bigram<- ngrams(tokens, 2)
bigram <- lapply(bigram, paste, collapse = " ")
unlist(bigram)
}
})
}
Tedros_bigrams <- csv %>%
unnest_tokens(bigram, sentence, token = jieba_bigram)Tedros_bigrams <- csv %>%
unnest_tokens(bigram, sentence, token = jieba_bigram) %>%
filter(artTitle %like% c('南海'))%>%
filter(artDate<'2021/4/30')
bigrams_separated <- Tedros_bigrams %>%
separate(bigram, c("word1", "word2"), sep = " ")
bigrams_filtered <- bigrams_separated %>%
filter(!word1 %in% stop_words) %>%
filter(!word2 %in% stop_words)
# new bigram counts:
bigram_counts <- bigrams_filtered %>%
count(word1, word2, sort = TRUE)
bigram_counts## word1 word2 n
## 1: 中國 大陸 99
## 2: 美國 海軍 70
## 3: 打擊 群 51
## 4: 數據 圖表 51
## 5: 7 月 48
## ---
## 18641: 鑽 油 1
## 18642: 鑽井 水下 1
## 18643: 鑽井 平台 1
## 18644: 鑽油 我將 1
## 18645: 鑽油台 調查 1
bigram_graph <- bigram_counts %>%
filter(n > 15) %>%
graph_from_data_frame()
bigram_graph## IGRAPH f390e71 DN-- 86 66 --
## + attr: name (v/c), n (e/n)
## + edges from f390e71 (vertex names):
## [1] 中國 ->大陸 美國 ->海軍 打擊 ->群 數據 ->圖表
## [5] 7 ->月 和平 ->穩定 進入 ->南海 南海 ->戰略
## [9] 態勢 ->感知 戰略 ->態勢 南海 ->問題 號 ->uss
## [13] 圖表 ->全球 軍事 ->化 西沙 ->群島 地區 ->國家
## [17] 8 ->c e ->8 南海 ->地區 航行 ->自由
## [21] 龐培 ->歐 問題 ->上 雷根 ->號 羅斯福 ->號
## [25] 地區 ->和平 範圍 ->內 中國 ->船隻 抵近 ->偵察
## [29] 南海 ->主權 海洋法 ->公約 13 ->日 表示 ->中國
## + ... omitted several edges
set.seed(2016)
a <- grid::arrow(type = "closed", length = unit(.15, "inches"))
ggraph(bigram_graph, layout = "fr") +
geom_edge_link(aes(edge_alpha = n), show.legend = FALSE,
arrow = a, end_cap = circle(.07, 'inches')) +
geom_node_point(color = "lightblue", size = 5) +
geom_node_text(aes(label = name), vjust = 1, hjust = 1) +
theme_void()Tedros_bigrams_2 <- csv %>%
unnest_tokens(bigram, sentence, token = jieba_bigram) %>%
filter(artTitle %like% c('南海'))%>%
filter(artDate == '2020-07-14')
bigrams_separated <- Tedros_bigrams_2 %>%
separate(bigram, c("word1", "word2"), sep = " ")
bigrams_filtered <- bigrams_separated %>%
filter(!word1 %in% stop_words) %>%
filter(!word2 %in% stop_words)
# new bigram counts:
bigram_counts_2 <- bigrams_filtered %>%
count(word1, word2, sort = TRUE)
bigram_counts_2## word1 word2 n
## 1: 龐培 歐 15
## 2: 中國 大陸 11
## 3: 13 日 7
## 4: 和平 穩定 7
## 5: 主權 主張 6
## ---
## 760: 權利 主張 1
## 761: 權利 龐培 1
## 762: 權益 主張 1
## 763: 變得 更 1
## 764: 鑽井 平台 1
bigram_graph <- bigram_counts_2 %>%
filter(n > 5) %>%
graph_from_data_frame()
set.seed(2016)
a <- grid::arrow(type = "closed", length = unit(.15, "inches"))
ggraph(bigram_graph, layout = "fr") +
geom_edge_link(aes(edge_alpha = n), show.legend = FALSE,
arrow = a, end_cap = circle(.07, 'inches')) +
geom_node_point(color = "lightblue", size = 5) +
geom_node_text(aes(label = name), vjust = 1, hjust = 1) +
theme_void()#mask_sentences$commentContent <- as.character (mask_sentences$commentContent)
mask_sentences_artUrl = csv %>%
select(artTitle,artDate,sentence,artUrl)%>%
filter(artTitle %like% c('南海'))
#mask_words <- mask_sentences %>%
# unnest_tokens(word, commentContent, token=chi_tokenizer)
#mask_sentences_artUrl<-mask_words
mask_words_artUrl <- mask_words%>%
filter(!str_detect(word, regex("[0-9a-zA-Z]"))) %>%
filter(artTitle %like% c('南海')) %>%
count(artUrl, word, sort = TRUE)
#mask_words_artUrl
total_words <- mask_words_artUrl %>%
group_by(artUrl) %>%
summarize(total = sum(n))
#total_words與 total_words(每篇文章的詞數) 新增各個詞彙在所有詞彙中的總數欄位
mask_words_artUrl %>%
left_join(total_words)%>%
arrange(desc(n))## Joining, by = "artUrl"
## artUrl word n total
## 1 https://udn.com/news/story/6809/4709443 美國 33 761
## 2 https://udn.com/news/story/6809/4817433 美國 23 404
## 3 https://udn.com/news/story/6809/4709443 中國 22 761
## 4 https://udn.com/news/story/12586/4730402 美國 21 375
## 5 https://udn.com/news/story/121687/5215820 美國 19 503
## 6 https://udn.com/news/story/12586/4730402 中國 19 375
## 7 https://udn.com/news/story/12586/4732749 南海 19 339
## 8 https://udn.com/news/story/6809/5123283 飛彈 19 319
## 9 https://udn.com/news/story/6809/4702142 美國 18 248
## 10 https://udn.com/news/story/7331/4737312 南海 18 291
## 11 https://udn.com/news/story/6809/4813538 中國 17 268
## 12 https://udn.com/news/story/7331/4731750 南海 17 279
## 13 https://udn.com/news/story/7331/4832251 南海 17 233
## 14 https://udn.com/news/story/7331/4922504 南海 17 262
## 15 https://udn.com/news/story/7331/5401625 南海 17 202
## 16 https://udn.com/news/story/6809/4817433 中國 16 404
## 17 https://udn.com/news/story/6809/5367370 中國 16 239
## 18 https://udn.com/news/story/6813/5002062 美國 16 258
## 19 https://udn.com/news/story/7331/4742714 南海 16 396
## 20 https://udn.com/news/story/7332/4388480 市場 16 184
## 21 https://udn.com/news/story/7332/4876640 油田 16 280
## 22 https://udn.com/news/story/6809/4271642 南海 15 273
## 23 https://udn.com/news/story/6809/4812685 中國 15 292
## 24 https://udn.com/news/story/6809/5063760 雙方 15 450
## 25 https://udn.com/news/story/6809/5123283 拉莫斯 15 319
## 26 https://udn.com/news/story/7331/4895326 南海 15 232
## 27 https://udn.com/news/story/6809/5263091 中國 14 376
## 28 https://udn.com/news/story/6809/5263091 南海 14 376
## 29 https://udn.com/news/story/7331/4605008 南海 14 268
## 30 https://udn.com/news/story/7331/4697199 中國 14 274
## 31 https://udn.com/news/story/7331/4713477 南海 14 266
## 32 https://udn.com/news/story/7331/4742714 中國 14 396
## 33 https://udn.com/news/story/7331/5287493 問題 14 428
## 34 https://udn.com/news/story/7331/5294249 南海 14 279
## 35 https://udn.com/news/story/7332/4876640 中國 14 280
## 36 https://udn.com/news/story/121687/5212213 林肯 13 295
## 37 https://udn.com/news/story/6809/4565919 美國 13 372
## 38 https://udn.com/news/story/6809/4709443 南海 13 761
## 39 https://udn.com/news/story/6809/4815509 南海 13 248
## 40 https://udn.com/news/story/6809/4934837 南海 13 298
## 41 https://udn.com/news/story/6809/5123283 印度 13 319
## 42 https://udn.com/news/story/7331/4605008 防空 13 268
## 43 https://udn.com/news/story/7331/4605008 識別區 13 268
## 44 https://udn.com/news/story/7331/4742714 美國 13 396
## 45 https://udn.com/news/story/7331/5039328 中辦 13 198
## 46 https://udn.com/news/story/6809/4271642 菲律賓 12 273
## 47 https://udn.com/news/story/6809/4313108 台灣 12 348
## 48 https://udn.com/news/story/6809/4313108 海軍 12 348
## 49 https://udn.com/news/story/6809/4808733 法官 12 196
## 50 https://udn.com/news/story/6809/5063760 艦艇 12 450
## 51 https://udn.com/news/story/6809/5123283 中國 12 319
## 52 https://udn.com/news/story/6809/5263091 美國 12 376
## 53 https://udn.com/news/story/6809/5352633 印尼 12 205
## 54 https://udn.com/news/story/6809/5365698 中國 12 186
## 55 https://udn.com/news/story/6809/5370058 中國 12 211
## 56 https://udn.com/news/story/6811/4812524 南海 12 266
## 57 https://udn.com/news/story/7331/4503537 中國 12 190
## 58 https://udn.com/news/story/7331/4605008 宣布 12 268
## 59 https://udn.com/news/story/7331/4697199 南海 12 274
## 60 https://udn.com/news/story/7331/4737312 美國 12 291
## 61 https://udn.com/news/story/7331/5039328 主任 12 198
## 62 https://udn.com/news/story/7331/5287493 中國 12 428
## 63 https://udn.com/news/story/7331/5287493 美國 12 428
## 64 https://udn.com/news/story/121687/5199268 航母 11 257
## 65 https://udn.com/news/story/121687/5215820 中國 11 503
## 66 https://udn.com/news/story/121687/5215820 拜登 11 503
## 67 https://udn.com/news/story/6809/4279234 印尼 11 268
## 68 https://udn.com/news/story/6809/4702067 南海 11 236
## 69 https://udn.com/news/story/6809/4702142 大陸 11 248
## 70 https://udn.com/news/story/6809/5123283 越南 11 319
## 71 https://udn.com/news/story/6809/5263091 大陸 11 376
## 72 https://udn.com/news/story/6809/5369418 中國 11 222
## 73 https://udn.com/news/story/6809/5376403 南海 11 312
## 74 https://udn.com/news/story/7331/4702018 南海 11 181
## 75 https://udn.com/news/story/7331/4834648 南海 11 349
## 76 https://udn.com/news/story/7331/4899934 海巡 11 164
## 77 https://udn.com/news/story/7332/4876640 流花 11 280
## 78 https://udn.com/news/story/121687/5199268 中國 10 257
## 79 https://udn.com/news/story/6809/4279234 海域 10 268
## 80 https://udn.com/news/story/6809/4279234 越南 10 268
## 81 https://udn.com/news/story/6809/4565919 中國 10 372
## 82 https://udn.com/news/story/6809/4695303 雷達 10 252
## 83 https://udn.com/news/story/6809/4702638 美國 10 245
## 84 https://udn.com/news/story/6809/4812685 大陸 10 292
## 85 https://udn.com/news/story/6809/4817433 南海 10 404
## 86 https://udn.com/news/story/6809/4934837 美國 10 298
## 87 https://udn.com/news/story/6809/5376403 美國 10 312
## 88 https://udn.com/news/story/6811/4812524 中國 10 266
## 89 https://udn.com/news/story/7331/4681864 美軍 10 231
## 90 https://udn.com/news/story/7331/4699962 南海 10 129
## 91 https://udn.com/news/story/7331/4704552 南海 10 216
## 92 https://udn.com/news/story/7331/4713855 沙頓 10 189
## 93 https://udn.com/news/story/7331/4713855 戰鬥機 10 189
## 94 https://udn.com/news/story/7331/4731750 中國 10 279
## 95 https://udn.com/news/story/7331/4832251 美國 10 233
## 96 https://udn.com/news/story/7331/4849422 南海 10 272
## 97 https://udn.com/news/story/7331/5285610 南海 10 128
## 98 https://udn.com/news/story/7331/5359369 南海 10 121
## 99 https://udn.com/news/story/7331/5365152 南海 10 217
## 100 https://udn.com/news/story/7332/4388480 工作人員 10 184
## 101 https://udn.com/news/story/7333/5401465 南海 10 154
## 102 https://udn.com/news/story/120675/4281503 肺炎 9 264
## 103 https://udn.com/news/story/121687/5212213 美國 9 295
## 104 https://udn.com/news/story/6809/4279234 中國 9 268
## 105 https://udn.com/news/story/6809/4279234 群島 9 268
## 106 https://udn.com/news/story/6809/4651251 打擊 9 205
## 107 https://udn.com/news/story/6809/4678125 演習 9 205
## 108 https://udn.com/news/story/6809/4695303 菲律賓 9 252
## 109 https://udn.com/news/story/6809/4699778 南海 9 214
## 110 https://udn.com/news/story/6809/4702142 南海 9 248
## 111 https://udn.com/news/story/6809/4808733 法庭 9 196
## 112 https://udn.com/news/story/6809/4808733 海洋法 9 196
## 113 https://udn.com/news/story/6809/4812685 南海 9 292
## 114 https://udn.com/news/story/6809/4939570 部署 9 203
## 115 https://udn.com/news/story/6809/4939570 雷根 9 203
## 116 https://udn.com/news/story/6809/5063760 海域 9 450
## 117 https://udn.com/news/story/6809/5263091 普萊斯 9 376
## 118 https://udn.com/news/story/6809/5370058 菲律賓 9 211
## 119 https://udn.com/news/story/6809/5376403 艦隊 9 312
## 120 https://udn.com/news/story/7331/4488979 遼寧 9 221
## 121 https://udn.com/news/story/7331/4605008 中國 9 268
## 122 https://udn.com/news/story/7331/4681864 關島 9 231
## 123 https://udn.com/news/story/7331/4704552 中國 9 216
## 124 https://udn.com/news/story/7331/4713477 戰機 9 266
## 125 https://udn.com/news/story/7331/4713478 中國 9 208
## 126 https://udn.com/news/story/7331/4751677 偵察機 9 138
## 127 https://udn.com/news/story/7331/4803877 海域 9 157
## 128 https://udn.com/news/story/7331/4816369 南海 9 253
## 129 https://udn.com/news/story/7331/4895326 中國 9 232
## 130 https://udn.com/news/story/7331/4895326 軍事 9 232
## 131 https://udn.com/news/story/7331/5039328 常務副 9 198
## 132 https://udn.com/news/story/7331/5287493 國家 9 428
## 133 https://udn.com/news/story/7331/5301066 王毅 9 270
## 134 https://udn.com/news/story/7331/5388998 海域 9 126
## 135 https://udn.com/news/story/122051/5369962 打擊 8 261
## 136 https://udn.com/news/story/6809/4271642 中國 8 273
## 137 https://udn.com/news/story/6809/4678125 南海 8 205
## 138 https://udn.com/news/story/6809/4695303 日本 8 252
## 139 https://udn.com/news/story/6809/4699778 美國 8 214
## 140 https://udn.com/news/story/6809/4699778 龐培 8 214
## 141 https://udn.com/news/story/6809/4699831 南海 8 134
## 142 https://udn.com/news/story/6809/4702067 北京 8 236
## 143 https://udn.com/news/story/6809/4702142 主權 8 248
## 144 https://udn.com/news/story/6809/4709443 不會 8 761
## 145 https://udn.com/news/story/6809/4709443 香港 8 761
## 146 https://udn.com/news/story/6809/4709443 國際 8 761
## 147 https://udn.com/news/story/6809/4709443 釣魚 8 761
## 148 https://udn.com/news/story/6809/4765714 中國 8 270
## 149 https://udn.com/news/story/6809/4765714 河野 8 270
## 150 https://udn.com/news/story/6809/4808733 中國 8 196
## 151 https://udn.com/news/story/6809/4808733 國際 8 196
## 152 https://udn.com/news/story/6809/4812688 中國 8 130
## 153 https://udn.com/news/story/6809/4813538 地圖 8 268
## 154 https://udn.com/news/story/6809/4934837 海軍 8 298
## 155 https://udn.com/news/story/6809/4934837 航母 8 298
## 156 https://udn.com/news/story/6809/4934837 雷根 8 298
## 157 https://udn.com/news/story/6809/5063760 爭議 8 450
## 158 https://udn.com/news/story/6809/5225330 美國 8 260
## 159 https://udn.com/news/story/6809/5255445 美國 8 211
## 160 https://udn.com/news/story/6809/5263091 主張 8 376
## 161 https://udn.com/news/story/6809/5263091 海警 8 376
## 162 https://udn.com/news/story/6809/5367370 船隻 8 239
## 163 https://udn.com/news/story/6809/5367370 報導 8 239
## 164 https://udn.com/news/story/6809/5370058 杜特蒂 8 211
## 165 https://udn.com/news/story/6809/5381036 菲律賓 8 206
## 166 https://udn.com/news/story/6809/5400212 南海 8 168
## 167 https://udn.com/news/story/6811/4675655 大陸 8 142
## 168 https://udn.com/news/story/6811/4675655 中國 8 142
## 169 https://udn.com/news/story/6811/4675655 南海 8 142
## 170 https://udn.com/news/story/6813/5244746 中國 8 166
## 171 https://udn.com/news/story/7331/4488979 編隊 8 221
## 172 https://udn.com/news/story/7331/4605008 北京 8 268
## 173 https://udn.com/news/story/7331/4697199 美國 8 274
## 174 https://udn.com/news/story/7331/4697199 軍事 8 274
## 175 https://udn.com/news/story/7331/4702018 大陸 8 181
## 176 https://udn.com/news/story/7331/4713477 永興島 8 266
## 177 https://udn.com/news/story/7331/4713478 美國 8 208
## 178 https://udn.com/news/story/7331/4724139 南海 8 214
## 179 https://udn.com/news/story/7331/4724139 美國 8 214
## 180 https://udn.com/news/story/7331/4727917 南海 8 142
## 181 https://udn.com/news/story/7331/4731672 南海 8 186
## 182 https://udn.com/news/story/7331/4731750 主權 8 279
## 183 https://udn.com/news/story/7331/4816369 中國 8 253
## 184 https://udn.com/news/story/7331/4832768 南海 8 111
## 185 https://udn.com/news/story/7331/4849422 大陸 8 272
## 186 https://udn.com/news/story/7331/4895326 美國 8 232
## 187 https://udn.com/news/story/7331/5287493 中美 8 428
## 188 https://udn.com/news/story/7331/5365152 美軍 8 217
## 189 https://udn.com/news/story/7332/4591030 病毒 8 126
## 190 https://udn.com/news/story/120675/4281503 武漢 7 264
## 191 https://udn.com/news/story/120675/4281503 原因 7 264
## 192 https://udn.com/news/story/121687/5199268 報導 7 257
## 193 https://udn.com/news/story/121687/5212213 大陸 7 295
## 194 https://udn.com/news/story/121687/5212213 中國 7 295
## 195 https://udn.com/news/story/121687/5212213 通話 7 295
## 196 https://udn.com/news/story/121687/5215820 北京 7 503
## 197 https://udn.com/news/story/122051/5368627 南海 7 239
## 198 https://udn.com/news/story/122051/5369349 南海 7 103
## 199 https://udn.com/news/story/122051/5369962 台灣 7 261
## 200 https://udn.com/news/story/12586/4730402 外交 7 375
## 201 https://udn.com/news/story/12586/4730402 美方 7 375
## 202 https://udn.com/news/story/12586/4732749 中國 7 339
## 203 https://udn.com/news/story/12586/4732749 海域 7 339
## 204 https://udn.com/news/story/12586/4732749 訓練 7 339
## 205 https://udn.com/news/story/12586/4732749 報導 7 339
## 206 https://udn.com/news/story/6809/4272045 越南 7 158
## 207 https://udn.com/news/story/6809/4279234 納土納 7 268
## 208 https://udn.com/news/story/6809/4313108 上將 7 348
## 209 https://udn.com/news/story/6809/4565919 南海 7 372
## 210 https://udn.com/news/story/6809/4565919 區域 7 372
## 211 https://udn.com/news/story/6809/4651251 美國 7 205
## 212 https://udn.com/news/story/6809/4682642 南海 7 186
## 213 https://udn.com/news/story/6809/4682642 美國 7 186
## 214 https://udn.com/news/story/6809/4682642 演習 7 186
## 215 https://udn.com/news/story/6809/4699778 表示 7 214
## 216 https://udn.com/news/story/6809/4702067 美國 7 236
## 217 https://udn.com/news/story/6809/4702638 自由 7 245
## 218 https://udn.com/news/story/6809/4702638 南海 7 245
## 219 https://udn.com/news/story/6809/4709443 外交 7 761
## 220 https://udn.com/news/story/6809/4709443 姑息 7 761
## 221 https://udn.com/news/story/6809/4709443 軍事 7 761
## 222 https://udn.com/news/story/6809/4709443 策略 7 761
## 223 https://udn.com/news/story/6809/4709443 蓬佩奧 7 761
## 224 https://udn.com/news/story/6809/4709443 聲明 7 761
## 225 https://udn.com/news/story/6809/4765714 美國 7 270
## 226 https://udn.com/news/story/6809/4812685 公司 7 292
## 227 https://udn.com/news/story/6809/4812685 美國 7 292
## 228 https://udn.com/news/story/6809/4813538 教科書 7 268
## 229 https://udn.com/news/story/6809/4815509 表示 7 248
## 230 https://udn.com/news/story/6809/4817433 企業 7 404
## 231 https://udn.com/news/story/6809/4925039 南海 7 124
## 232 https://udn.com/news/story/6809/4933721 海軍 7 206
## 233 https://udn.com/news/story/6809/4939570 打擊 7 203
## 234 https://udn.com/news/story/6809/5217399 美國 7 102
## 235 https://udn.com/news/story/6809/5225330 模擬 7 260
## 236 https://udn.com/news/story/6809/5255445 自由 7 211
## 237 https://udn.com/news/story/6809/5263091 海上 7 376
## 238 https://udn.com/news/story/6809/5352633 日本 7 205
## 239 https://udn.com/news/story/6809/5365698 菲律賓 7 186
## 240 https://udn.com/news/story/6809/5400212 中國 7 168
## 241 https://udn.com/news/story/6811/4812524 島嶼 7 266
## 242 https://udn.com/news/story/6811/4812588 中國 7 162
## 243 https://udn.com/news/story/6813/4542826 美國 7 202
## 244 https://udn.com/news/story/7331/4414231 南海 7 186
## 245 https://udn.com/news/story/7331/4681864 轟炸機 7 231
## 246 https://udn.com/news/story/7331/4697199 文章 7 274
## 247 https://udn.com/news/story/7331/4703971 南海 7 200
## 248 https://udn.com/news/story/7331/4704552 美方 7 216
## 249 https://udn.com/news/story/7331/4713478 制裁 7 208
## 250 https://udn.com/news/story/7331/4713855 中國 7 189
## 251 https://udn.com/news/story/7331/4737312 不是 7 291
## 252 https://udn.com/news/story/7331/4834648 美軍 7 349
## 253 https://udn.com/news/story/7331/4849422 國家 7 272
## 254 https://udn.com/news/story/7331/4866729 南海 7 103
## 255 https://udn.com/news/story/7331/5039328 孟祥鋒 7 198
## 256 https://udn.com/news/story/7331/5039328 擔任 7 198
## 257 https://udn.com/news/story/7331/5294249 德國 7 279
## 258 https://udn.com/news/story/7331/5301066 中國 7 270
## 259 https://udn.com/news/story/7331/5301066 南海 7 270
## 260 https://udn.com/news/story/7331/5365152 東海 7 217
## 261 https://udn.com/news/story/7331/5401625 美國 7 202
## 262 https://udn.com/news/story/7332/4876640 海油 7 280
## 263 https://udn.com/news/story/7333/4813542 南海 7 97
## 264 https://udn.com/news/story/7333/5401465 問題 7 154
## 265 https://udn.com/news/story/120675/4281503 不明 6 264
## 266 https://udn.com/news/story/120675/4281503 表示 6 264
## 267 https://udn.com/news/story/121687/5199268 第三艘 6 257
## 268 https://udn.com/news/story/121687/5212213 合作 6 295
## 269 https://udn.com/news/story/121687/5215820 台灣 6 503
## 270 https://udn.com/news/story/121687/5215820 南海 6 503
## 271 https://udn.com/news/story/122051/5368627 東海 6 239
## 272 https://udn.com/news/story/122051/5368627 海域 6 239
## 273 https://udn.com/news/story/122051/5369349 打擊 6 103
## 274 https://udn.com/news/story/122051/5369349 羅斯福 6 103
## 275 https://udn.com/news/story/122051/5369962 羅斯福 6 261
## 276 https://udn.com/news/story/12586/4730402 中美關係 6 375
## 277 https://udn.com/news/story/12586/4730402 永年 6 375
## 278 https://udn.com/news/story/12586/4730402 南海 6 375
## 279 https://udn.com/news/story/12586/4730402 關閉 6 375
## 280 https://udn.com/news/story/6809/4271642 杜特蒂 6 273
## 281 https://udn.com/news/story/6809/4271642 油氣 6 273
## 282 https://udn.com/news/story/6809/4313108 司令 6 348
## 283 https://udn.com/news/story/6809/4313108 安全 6 348
## 284 https://udn.com/news/story/6809/4565919 疫情 6 372
## 285 https://udn.com/news/story/6809/4651251 海軍 6 205
## 286 https://udn.com/news/story/6809/4678024 中國 6 184
## 287 https://udn.com/news/story/6809/4678024 航母 6 184
## 288 https://udn.com/news/story/6809/4682238 美國 6 143
## 289 https://udn.com/news/story/6809/4686528 南海 6 215
## 290 https://udn.com/news/story/6809/4686528 聲明 6 215
## 291 https://udn.com/news/story/6809/4695303 共機 6 252
## 292 https://udn.com/news/story/6809/4699778 主張 6 214
## 293 https://udn.com/news/story/6809/4699778 北京 6 214
## 294 https://udn.com/news/story/6809/4702067 中國 6 236
## 295 https://udn.com/news/story/6809/4702067 史達偉 6 236
## 296 https://udn.com/news/story/6809/4702142 主張 6 248
## 297 https://udn.com/news/story/6809/4702638 蒙森 6 245
## 298 https://udn.com/news/story/6809/4702638 權利 6 245
## 299 https://udn.com/news/story/6809/4707133 南海 6 101
## 300 https://udn.com/news/story/6809/4707133 澳洲 6 101
## 301 https://udn.com/news/story/6809/4724267 南海 6 192
## 302 https://udn.com/news/story/6809/4775709 中國 6 211
## 303 https://udn.com/news/story/6809/4775709 美國 6 211
## 304 https://udn.com/news/story/6809/4815509 行為 6 248
## 305 https://udn.com/news/story/6809/4815509 美國 6 248
## 306 https://udn.com/news/story/6809/4815509 菲國 6 248
## 307 https://udn.com/news/story/6809/4817433 公司 6 404
## 308 https://udn.com/news/story/6809/4877676 菲國 6 191
## 309 https://udn.com/news/story/6809/4933721 美國 6 206
## 310 https://udn.com/news/story/6809/4933721 海上 6 206
## 311 https://udn.com/news/story/6809/4939570 南海 6 203
## 312 https://udn.com/news/story/6809/4939570 號航艦 6 203
## 313 https://udn.com/news/story/6809/5063760 人員 6 450
## 314 https://udn.com/news/story/6809/5063760 巡邏 6 450
## 315 https://udn.com/news/story/6809/5063760 透過 6 450
## 316 https://udn.com/news/story/6809/5063760 衝突 6 450
## 317 https://udn.com/news/story/6809/5063760 默契 6 450
## 318 https://udn.com/news/story/6809/5225330 透過 6 260
## 319 https://udn.com/news/story/6809/5255445 表示 6 211
## 320 https://udn.com/news/story/6809/5255445 第七 6 211
## 321 https://udn.com/news/story/6809/5255445 艦隊 6 211
## 322 https://udn.com/news/story/6809/5255445 權利 6 211
## 323 https://udn.com/news/story/6809/5263091 表示 6 376
## 324 https://udn.com/news/story/6809/5365698 主權 6 186
## 325 https://udn.com/news/story/6809/5365698 船隻 6 186
## 326 https://udn.com/news/story/6809/5367370 海域 6 239
## 327 https://udn.com/news/story/6809/5367370 菲律賓 6 239
## 328 https://udn.com/news/story/6809/5369418 船隻 6 222
## 329 https://udn.com/news/story/6809/5376403 印太 6 312
## 330 https://udn.com/news/story/6809/5381036 聯合 6 206
## 331 https://udn.com/news/story/6811/4812524 美國 6 266
## 332 https://udn.com/news/story/6811/4812588 通信 6 162
## 333 https://udn.com/news/story/6813/4693835 美國 6 111
## 334 https://udn.com/news/story/6813/4720296 艾思博 6 133
## 335 https://udn.com/news/story/6813/5002062 中國 6 258
## 336 https://udn.com/news/story/6813/5244746 南海 6 166
## 337 https://udn.com/news/story/6813/5244746 美國 6 166
## 338 https://udn.com/news/story/7331/4503537 島礁 6 190
## 339 https://udn.com/news/story/7331/4503537 海底 6 190
## 340 https://udn.com/news/story/7331/4530327 國際 6 218
## 341 https://udn.com/news/story/7331/4681864 中國 6 231
## 342 https://udn.com/news/story/7331/4681864 南海 6 231
## 343 https://udn.com/news/story/7331/4697199 地區 6 274
## 344 https://udn.com/news/story/7331/4702018 美國 6 181
## 345 https://udn.com/news/story/7331/4703971 美軍 6 200
## 346 https://udn.com/news/story/7331/4704552 地區 6 216
## 347 https://udn.com/news/story/7331/4713477 中國 6 266
## 348 https://udn.com/news/story/7331/4713477 航母 6 266
## 349 https://udn.com/news/story/7331/4713478 中海油 6 208
## 350 https://udn.com/news/story/7331/4713855 永興島 6 189
## 351 https://udn.com/news/story/7331/4713855 美國 6 189
## 352 https://udn.com/news/story/7331/4727917 海域 6 142
## 353 https://udn.com/news/story/7331/4731672 美軍 6 186
## 354 https://udn.com/news/story/7331/4731672 美國 6 186
## 355 https://udn.com/news/story/7331/4731750 澳洲 6 279
## 356 https://udn.com/news/story/7331/4737312 大陸 6 291
## 357 https://udn.com/news/story/7331/4737312 國際法 6 291
## 358 https://udn.com/news/story/7331/4751677 南海 6 138
## 359 https://udn.com/news/story/7331/4803877 解放軍 6 157
## 360 https://udn.com/news/story/7331/4813671 東風 6 140
## 361 https://udn.com/news/story/7331/4816369 中方 6 253
## 362 https://udn.com/news/story/7331/4817559 南海 6 97
## 363 https://udn.com/news/story/7331/4832251 中國 6 233
## 364 https://udn.com/news/story/7331/4832251 合作 6 233
## 365 https://udn.com/news/story/7331/4832768 國家 6 111
## 366 https://udn.com/news/story/7331/4834648 中國 6 349
## 367 https://udn.com/news/story/7331/4834648 民航 6 349
## 368 https://udn.com/news/story/7331/4834648 偵察機 6 349
## 369 https://udn.com/news/story/7331/4895326 汪文斌 6 232
## 370 https://udn.com/news/story/7331/4895326 領土 6 232
## 371 https://udn.com/news/story/7331/4899934 中國 6 164
## 372 https://udn.com/news/story/7331/4922504 可能 6 262
## 373 https://udn.com/news/story/7331/4922504 吳士存 6 262
## 374 https://udn.com/news/story/7331/4922504 美國 6 262
## 375 https://udn.com/news/story/7331/5039328 國家機關 6 198
## 376 https://udn.com/news/story/7331/5287493 未來 6 428
## 377 https://udn.com/news/story/7331/5287493 領土 6 428
## 378 https://udn.com/news/story/7331/5294249 美國 6 279
## 379 https://udn.com/news/story/7331/5294249 軍艦 6 279
## 380 https://udn.com/news/story/7331/5358554 中國 6 86
## 381 https://udn.com/news/story/7331/5358554 菲律賓 6 86
## 382 https://udn.com/news/story/7331/5359369 中國 6 121
## 383 https://udn.com/news/story/7331/5359369 加拿大 6 121
## 384 https://udn.com/news/story/7331/5401625 中國 6 202
## 385 https://udn.com/news/story/7332/4591030 可能 6 126
## 386 https://udn.com/news/story/7333/5401465 吳江 6 154
## 387 https://udn.com/news/story/120675/4281503 旅行 5 264
## 388 https://udn.com/news/story/120675/4281503 患者 5 264
## 389 https://udn.com/news/story/120675/4281503 報導 5 264
## 390 https://udn.com/news/story/121687/5199268 南海 5 257
## 391 https://udn.com/news/story/121687/5212213 表示 5 295
## 392 https://udn.com/news/story/121687/5212213 對抗 5 295
## 393 https://udn.com/news/story/121687/5215820 政府 5 503
## 394 https://udn.com/news/story/121687/5215820 海軍 5 503
## 395 https://udn.com/news/story/122051/5368627 中國 5 239
## 396 https://udn.com/news/story/122051/5368627 軍事 5 239
## 397 https://udn.com/news/story/122051/5369349 進入 5 103
## 398 https://udn.com/news/story/122051/5369962 中國 5 261
## 399 https://udn.com/news/story/122051/5369962 航空母艦 5 261
## 400 https://udn.com/news/story/122051/5369962 號航艦 5 261
## 401 https://udn.com/news/story/12586/4730402 沒有 5 375
## 402 https://udn.com/news/story/12586/4730402 表示 5 375
## 403 https://udn.com/news/story/12586/4730402 問題 5 375
## 404 https://udn.com/news/story/12586/4730402 戰爭 5 375
## 405 https://udn.com/news/story/12586/4732749 今天 5 339
## 406 https://udn.com/news/story/12586/4732749 共軍 5 339
## 407 https://udn.com/news/story/12586/4732749 飛入 5 339
## 408 https://udn.com/news/story/6809/4271642 主權 5 273
## 409 https://udn.com/news/story/6809/4271642 兩國 5 273
## 410 https://udn.com/news/story/6809/4271642 問題 5 273
## 411 https://udn.com/news/story/6809/4271642 開發 5 273
## 412 https://udn.com/news/story/6809/4279234 公約 5 268
## 413 https://udn.com/news/story/6809/4279234 主權 5 268
## 414 https://udn.com/news/story/6809/4279234 表示 5 268
## 415 https://udn.com/news/story/6809/4279234 海洋法 5 268
## 416 https://udn.com/news/story/6809/4279234 船隻 5 268
## 417 https://udn.com/news/story/6809/4279234 聯合國 5 268
## 418 https://udn.com/news/story/6809/4313108 表示 5 348
## 419 https://udn.com/news/story/6809/4313108 將領 5 348
## 420 https://udn.com/news/story/6809/4551117 海軍 5 178
## 421 https://udn.com/news/story/6809/4565919 利用 5 372
## 422 https://udn.com/news/story/6809/4565919 軍事 5 372
## 423 https://udn.com/news/story/6809/4565919 轟炸機 5 372
## 424 https://udn.com/news/story/6809/4678024 美國 5 184
## 425 https://udn.com/news/story/6809/4678024 演習 5 184
## 426 https://udn.com/news/story/6809/4678125 美軍 5 205
## 427 https://udn.com/news/story/6809/4678125 美國 5 205
## 428 https://udn.com/news/story/6809/4678125 海軍 5 205
## 429 https://udn.com/news/story/6809/4682642 中國 5 186
## 430 https://udn.com/news/story/6809/4682642 海軍 5 186
## 431 https://udn.com/news/story/6809/4686528 北韓 5 215
## 432 https://udn.com/news/story/6809/4686528 行動 5 215
## 433 https://udn.com/news/story/6809/4695303 巴士海峽 5 252
## 434 https://udn.com/news/story/6809/4699778 海上 5 214
## 435 https://udn.com/news/story/6809/4699778 國際法 5 214
## 436 https://udn.com/news/story/6809/4699778 資源 5 214
## 437 https://udn.com/news/story/6809/4699831 美國 5 134
## 438 https://udn.com/news/story/6809/4702142 水域 5 248
## 439 https://udn.com/news/story/6809/4702142 可能 5 248
## 440 https://udn.com/news/story/6809/4702142 聲明 5 248
## 441 https://udn.com/news/story/6809/4702638 主張 5 245
## 442 https://udn.com/news/story/6809/4702638 表示 5 245
## 443 https://udn.com/news/story/6809/4702638 航行 5 245
## 444 https://udn.com/news/story/6809/4702638 國際法 5 245
## 445 https://udn.com/news/story/6809/4709443 日本 5 761
## 446 https://udn.com/news/story/6809/4709443 北京 5 761
## 447 https://udn.com/news/story/6809/4709443 台灣 5 761
## 448 https://udn.com/news/story/6809/4709443 爭議 5 761
## 449 https://udn.com/news/story/6809/4709443 國安法 5 761
## 450 https://udn.com/news/story/6809/4709443 國家 5 761
## 451 https://udn.com/news/story/6809/4724267 偵察機 5 192
## 452 https://udn.com/news/story/6809/4765714 日本 5 270
## 453 https://udn.com/news/story/6809/4765714 國際 5 270
## 454 https://udn.com/news/story/6809/4775709 南海 5 211
## 455 https://udn.com/news/story/6809/4775709 對話 5 211
## 456 https://udn.com/news/story/6809/4786257 南海 5 170
## 457 https://udn.com/news/story/6809/4786257 演習 5 170
## 458 https://udn.com/news/story/6809/4808733 選舉 5 196
## 459 https://udn.com/news/story/6809/4812685 建設 5 292
## 460 https://udn.com/news/story/6809/4812685 實施 5 292
## 461 https://udn.com/news/story/6809/4812688 南海 5 130
## 462 https://udn.com/news/story/6809/4813050 北京 5 100
## 463 https://udn.com/news/story/6809/4813050 美國 5 100
## 464 https://udn.com/news/story/6809/4813050 發射 5 100
## 465 https://udn.com/news/story/6809/4813538 九段 5 268
## 466 https://udn.com/news/story/6809/4813538 主張 5 268
## 467 https://udn.com/news/story/6809/4813538 出版商 5 268
## 468 https://udn.com/news/story/6809/4813538 南海 5 268
## 469 https://udn.com/news/story/6809/4813538 澳洲 5 268
## 470 https://udn.com/news/story/6809/4815509 大陸 5 248
## 471 https://udn.com/news/story/6809/4817433 北京 5 404
## 472 https://udn.com/news/story/6809/4817433 制裁 5 404
## 473 https://udn.com/news/story/6809/4817433 建設 5 404
## 474 https://udn.com/news/story/6809/4877676 人權 5 191
## 475 https://udn.com/news/story/6809/4877676 杜特蒂 5 191
## 476 https://udn.com/news/story/6809/4877676 發言 5 191
## 477 https://udn.com/news/story/6809/4891329 大陸 5 97
## 478 https://udn.com/news/story/6809/4891329 偵察 5 97
## 479 https://udn.com/news/story/6809/4933721 日本 5 206
## 480 https://udn.com/news/story/6809/4933721 演習 5 206
## 481 https://udn.com/news/story/6809/4934837 報導 5 298
## 482 https://udn.com/news/story/6809/5063760 專業 5 450
## 483 https://udn.com/news/story/6809/5063760 媒體 5 450
## 484 https://udn.com/news/story/6809/5063760 影像 5 450
## 485 https://udn.com/news/story/6809/5123283 南海 5 319
## 486 https://udn.com/news/story/6809/5217307 美國 5 66
## 487 https://udn.com/news/story/6809/5225330 攻擊 5 260
## 488 https://udn.com/news/story/6809/5225330 軍機 5 260
## 489 https://udn.com/news/story/6809/5255445 航行 5 211
## 490 https://udn.com/news/story/6809/5255445 國際法 5 211
## 491 https://udn.com/news/story/6809/5352633 演習 5 205
## 492 https://udn.com/news/story/6809/5367370 南海 5 239
## 493 https://udn.com/news/story/6809/5367370 美國 5 239
## 494 https://udn.com/news/story/6809/5369418 海域 5 222
## 495 https://udn.com/news/story/6809/5369418 菲律賓 5 222
## 496 https://udn.com/news/story/6809/5376403 中國 5 312
## 497 https://udn.com/news/story/6809/5376403 兩棲 5 312
## 498 https://udn.com/news/story/6809/5376403 美軍 5 312
## 499 https://udn.com/news/story/6809/5381036 演習 5 206
## 500 https://udn.com/news/story/6811/4675655 軍事 5 142
## 501 https://udn.com/news/story/6811/4675655 軍演 5 142
## 502 https://udn.com/news/story/6811/4812524 中交 5 266
## 503 https://udn.com/news/story/6811/4812524 建造 5 266
## 504 https://udn.com/news/story/6811/4812588 公司 5 162
## 505 https://udn.com/news/story/6811/4812588 廣州 5 162
## 506 https://udn.com/news/story/6813/4542826 武漢 5 202
## 507 https://udn.com/news/story/6813/4542826 表示 5 202
## 508 https://udn.com/news/story/6813/4542826 病毒 5 202
## 509 https://udn.com/news/story/6813/4693835 南海 5 111
## 510 https://udn.com/news/story/6813/4693835 軍事 5 111
## 511 https://udn.com/news/story/6813/4720296 大陸 5 133
## 512 https://udn.com/news/story/6813/4720296 中國 5 133
## 513 https://udn.com/news/story/6813/4720296 美國 5 133
## 514 https://udn.com/news/story/6813/5002062 佛洛 5 258
## 515 https://udn.com/news/story/6813/5002062 諾伊 5 258
## 516 https://udn.com/news/story/6813/5200106 羅斯福 5 162
## 517 https://udn.com/news/story/6813/5244746 打擊 5 166
## 518 https://udn.com/news/story/7331/4488979 台灣 5 221
## 519 https://udn.com/news/story/7331/4488979 航母 5 221
## 520 https://udn.com/news/story/7331/4503537 公告 5 190
## 521 https://udn.com/news/story/7331/4503537 西沙 5 190
## 522 https://udn.com/news/story/7331/4503537 命名 5 190
## 523 https://udn.com/news/story/7331/4503537 群島 5 190
## 524 https://udn.com/news/story/7331/4530327 疫情 5 218
## 525 https://udn.com/news/story/7331/4557178 東沙 5 148
## 526 https://udn.com/news/story/7331/4557178 解放軍 5 148
## 527 https://udn.com/news/story/7331/4605008 東海 5 268
## 528 https://udn.com/news/story/7331/4605008 解放軍 5 268
## 529 https://udn.com/news/story/7331/4681864 表示 5 231
## 530 https://udn.com/news/story/7331/4681864 美國 5 231
## 531 https://udn.com/news/story/7331/4681864 展示 5 231
## 532 https://udn.com/news/story/7331/4697199 和平 5 274
## 533 https://udn.com/news/story/7331/4697199 國家 5 274
## 534 https://udn.com/news/story/7331/4697199 穩定 5 274
## 535 https://udn.com/news/story/7331/4699962 中共 5 129
## 536 https://udn.com/news/story/7331/4699962 地區 5 129
## 537 https://udn.com/news/story/7331/4702018 中方 5 181
## 538 https://udn.com/news/story/7331/4702018 表示 5 181
## 539 https://udn.com/news/story/7331/4703971 抵近 5 200
## 540 https://udn.com/news/story/7331/4704552 制裁 5 216
## 541 https://udn.com/news/story/7331/4704552 國家 5 216
## 542 https://udn.com/news/story/7331/4713477 四架 5 266
## 543 https://udn.com/news/story/7331/4713477 美國 5 266
## 544 https://udn.com/news/story/7331/4713477 部署 5 266
## 545 https://udn.com/news/story/7331/4713477 報導 5 266
## 546 https://udn.com/news/story/7331/4713477 解放軍 5 266
## 547 https://udn.com/news/story/7331/4713855 南海 5 189
## 548 https://udn.com/news/story/7331/4713855 指出 5 189
## 549 https://udn.com/news/story/7331/4713855 部署 5 189
## 550 https://udn.com/news/story/7331/4724139 抵近 5 214
## 551 https://udn.com/news/story/7331/4724139 偵察 5 214
## 552 https://udn.com/news/story/7331/4731672 中國 5 186
## 553 https://udn.com/news/story/7331/4731750 美國 5 279
## 554 https://udn.com/news/story/7331/4731750 聯合國 5 279
## 555 https://udn.com/news/story/7331/4737312 中國 5 291
## 556 https://udn.com/news/story/7331/4737312 表示 5 291
## 557 https://udn.com/news/story/7331/4737312 問題 5 291
## 558 https://udn.com/news/story/7331/4742714 國內 5 396
## 559 https://udn.com/news/story/7331/4751677 架次 5 138
## 560 https://udn.com/news/story/7331/4803877 軍事 5 157
## 561 https://udn.com/news/story/7331/4803877 訓練 5 157
## 562 https://udn.com/news/story/7331/4803877 進行 5 157
## 563 https://udn.com/news/story/7331/4813671 中國 5 140
## 564 https://udn.com/news/story/7331/4813671 彈道導彈 5 140
## 565 https://udn.com/news/story/7331/4814984 中國 5 91
## 566 https://udn.com/news/story/7331/4816369 胡錫進 5 253
## 567 https://udn.com/news/story/7331/4832251 國家 5 233
## 568 https://udn.com/news/story/7331/4834648 飛機 5 349
## 569 https://udn.com/news/story/7331/4834648 電碼 5 349
## 570 https://udn.com/news/story/7331/4849422 中國 5 272
## 571 https://udn.com/news/story/7331/4849422 地區 5 272
## 572 https://udn.com/news/story/7331/4849422 表示 5 272
## 573 https://udn.com/news/story/7331/4849422 美國 5 272
## 574 https://udn.com/news/story/7331/4883732 南海 5 121
## 575 https://udn.com/news/story/7331/4883732 偵察 5 121
## 576 https://udn.com/news/story/7331/4895326 活動 5 232
## 577 https://udn.com/news/story/7331/4899934 海事局 5 164
## 578 https://udn.com/news/story/7331/4922504 中美 5 262
## 579 https://udn.com/news/story/7331/4926456 中方 5 128
## 580 https://udn.com/news/story/7331/5039328 工作 5 198
## 581 https://udn.com/news/story/7331/5039328 中共中央 5 198
## 582 https://udn.com/news/story/7331/5039328 書記 5 198
## 583 https://udn.com/news/story/7331/5287493 可能 5 428
## 584 https://udn.com/news/story/7331/5287493 合作 5 428
## 585 https://udn.com/news/story/7331/5287493 利益 5 428
## 586 https://udn.com/news/story/7331/5287493 南海 5 428
## 587 https://udn.com/news/story/7331/5287493 海洋權益 5 428
## 588 https://udn.com/news/story/7331/5287493 解決 5 428
## 589 https://udn.com/news/story/7331/5287493 需要 5 428
## 590 https://udn.com/news/story/7331/5294249 中國 5 279
## 591 https://udn.com/news/story/7331/5294249 國家 5 279
## 592 https://udn.com/news/story/7331/5294249 歐洲 5 279
## 593 https://udn.com/news/story/7331/5358554 船隻 5 86
## 594 https://udn.com/news/story/7331/5393116 西沙 5 100
## 595 https://udn.com/news/story/7331/5404677 南海 5 102
## 596 https://udn.com/news/story/7332/4388480 一位 5 184
## 597 https://udn.com/news/story/7332/4388480 南海 5 184
## 598 https://udn.com/news/story/7332/4388480 消毒 5 184
## 599 https://udn.com/news/story/7332/4876640 生產 5 280
## 600 https://udn.com/news/story/7332/4876640 深水 5 280
## 601 https://udn.com/news/story/7332/4876640 開發 5 280
## 602 https://udn.com/news/story/7332/4876640 萬立方米 5 280
## 603 https://udn.com/news/story/7333/4704558 大陸 5 145
## 604 https://udn.com/news/story/7333/4704558 南海 5 145
## 605 https://udn.com/news/story/7333/4704558 美方 5 145
## 606 https://udn.com/news/story/120675/4281503 死亡 4 264
## 607 https://udn.com/news/story/120675/4281503 英國 4 264
## 608 https://udn.com/news/story/120675/4281503 病例 4 264
## 609 https://udn.com/news/story/120675/4281503 症狀 4 264
## 610 https://udn.com/news/story/121687/5199268 東海 4 257
## 611 https://udn.com/news/story/121687/5199268 海軍 4 257
## 612 https://udn.com/news/story/121687/5199268 編隊 4 257
## 613 https://udn.com/news/story/121687/5212213 世界 4 295
## 614 https://udn.com/news/story/121687/5212213 包括 4 295
## 615 https://udn.com/news/story/121687/5212213 美中關係 4 295
## 616 https://udn.com/news/story/121687/5212213 氣候變遷 4 295
## 617 https://udn.com/news/story/121687/5212213 關係 4 295
## 618 https://udn.com/news/story/121687/5215820 不會 4 503
## 619 https://udn.com/news/story/121687/5215820 今年 4 503
## 620 https://udn.com/news/story/121687/5215820 去年 4 503
## 621 https://udn.com/news/story/121687/5215820 可能 4 503
## 622 https://udn.com/news/story/121687/5215820 打擊 4 503
## 623 https://udn.com/news/story/121687/5215820 行動 4 503
## 624 https://udn.com/news/story/121687/5215820 海警 4 503
## 625 https://udn.com/news/story/121687/5215820 菲律賓 4 503
## 626 https://udn.com/news/story/122051/5368627 角力 4 239
## 627 https://udn.com/news/story/122051/5368627 美軍 4 239
## 628 https://udn.com/news/story/122051/5368627 航空母艦 4 239
## 629 https://udn.com/news/story/122051/5369349 美國 4 103
## 630 https://udn.com/news/story/122051/5369962 南海 4 261
## 631 https://udn.com/news/story/122051/5369962 海軍 4 261
## 632 https://udn.com/news/story/122051/5369962 驅逐艦 4 261
## 633 https://udn.com/news/story/12586/4730402 可控 4 375
## 634 https://udn.com/news/story/12586/4730402 現在 4 375
## 635 https://udn.com/news/story/12586/4730402 領事館 4 375
## 636 https://udn.com/news/story/12586/4732749 公布 4 339
## 637 https://udn.com/news/story/12586/4732749 指揮 4 339
## 638 https://udn.com/news/story/12586/4732749 飛行 4 339
## 639 https://udn.com/news/story/12586/4732749 偵察機 4 339
## 640 https://udn.com/news/story/12586/4732749 進行 4 339
## 641 https://udn.com/news/story/6809/4272045 日方 4 158
## 642 https://udn.com/news/story/6809/4272045 日本 4 158
## 643 https://udn.com/news/story/6809/4272045 南海 4 158
## 644 https://udn.com/news/story/6809/4308863 自由 4 75
## 645 https://udn.com/news/story/6809/4308863 作業 4 75
## 646 https://udn.com/news/story/6809/4313108 水面 4 348
## 647 https://udn.com/news/story/6809/4313108 永康 4 348
## 648 https://udn.com/news/story/6809/4313108 年會 4 348
## 649 https://udn.com/news/story/6809/4313108 重要性 4 348
## 650 https://udn.com/news/story/6809/4313108 海上 4 348
## 651 https://udn.com/news/story/6809/4313108 高階 4 348
## 652 https://udn.com/news/story/6809/4313108 進行 4 348
## 653 https://udn.com/news/story/6809/4503516 中國 4 127
## 654 https://udn.com/news/story/6809/4503516 南海 4 127
## 655 https://udn.com/news/story/6809/4504105 中國 4 102
## 656 https://udn.com/news/story/6809/4504105 越南 4 102
## 657 https://udn.com/news/story/6809/4551117 法治 4 178
## 658 https://udn.com/news/story/6809/4551117 美國 4 178
## 659 https://udn.com/news/story/6809/4551117 航行 4 178
## 660 https://udn.com/news/story/6809/4551117 區域 4 178
## 661 https://udn.com/news/story/6809/4565919 全球 4 372
## 662 https://udn.com/news/story/6809/4565919 行動 4 372
## 663 https://udn.com/news/story/6809/4565919 表示 4 372
## 664 https://udn.com/news/story/6809/4565919 美方 4 372
## 665 https://udn.com/news/story/6809/4565919 海軍 4 372
## 666 https://udn.com/news/story/6809/4651251 展開 4 205
## 667 https://udn.com/news/story/6809/4651251 航空母艦 4 205
## 668 https://udn.com/news/story/6809/4678024 南海 4 184
## 669 https://udn.com/news/story/6809/4678024 軍事 4 184
## 670 https://udn.com/news/story/6809/4678024 軍演 4 184
## 671 https://udn.com/news/story/6809/4678024 進行 4 184
## 672 https://udn.com/news/story/6809/4678125 航艦 4 205
## 673 https://udn.com/news/story/6809/4682238 航母 4 143
## 674 https://udn.com/news/story/6809/4682642 航艦 4 186
## 675 https://udn.com/news/story/6809/4686528 破壞 4 215
## 676 https://udn.com/news/story/6809/4695303 台灣 4 252
## 677 https://udn.com/news/story/6809/4695303 海峽 4 252
## 678 https://udn.com/news/story/6809/4695303 情報 4 252
## 679 https://udn.com/news/story/6809/4699778 大陸 4 214
## 680 https://udn.com/news/story/6809/4699778 中國 4 214
## 681 https://udn.com/news/story/6809/4699778 地區 4 214
## 682 https://udn.com/news/story/6809/4702067 大陸 4 236
## 683 https://udn.com/news/story/6809/4702067 國有企業 4 236
## 684 https://udn.com/news/story/6809/4702638 國家 4 245
## 685 https://udn.com/news/story/6809/4702638 無害 4 245
## 686 https://udn.com/news/story/6809/4707133 支持 4 101
## 687 https://udn.com/news/story/6809/4707133 美國 4 101
## 688 https://udn.com/news/story/6809/4707133 莫里森 4 101
## 689 https://udn.com/news/story/6809/4709443 行動 4 761
## 690 https://udn.com/news/story/6809/4709443 沒有 4 761
## 691 https://udn.com/news/story/6809/4709443 指出 4 761
## 692 https://udn.com/news/story/6809/4709443 領土 4 761
## 693 https://udn.com/news/story/6809/4709443 衝突 4 761
## 694 https://udn.com/news/story/6809/4724267 中國 4 192
## 695 https://udn.com/news/story/6809/4724267 巡邏機 4 192
## 696 https://udn.com/news/story/6809/4724267 美軍 4 192
## 697 https://udn.com/news/story/6809/4765714 北韓 4 270
## 698 https://udn.com/news/story/6809/4765714 行動 4 270
## 699 https://udn.com/news/story/6809/4765714 南海 4 270
## 700 https://udn.com/news/story/6809/4786257 共軍 4 170
## 701 https://udn.com/news/story/6809/4786257 近日 4 170
## 702 https://udn.com/news/story/6809/4786257 惠州 4 170
## 703 https://udn.com/news/story/6809/4808733 南海 4 196
## 704 https://udn.com/news/story/6809/4812685 人工島 4 292
## 705 https://udn.com/news/story/6809/4812685 表示 4 292
## 706 https://udn.com/news/story/6809/4812685 研究所 4 292
## 707 https://udn.com/news/story/6809/4812685 軍事 4 292
## 708 https://udn.com/news/story/6809/4812685 破壞 4 292
## 709 https://udn.com/news/story/6809/4812685 實體 4 292
## 710 https://udn.com/news/story/6809/4812685 廣州 4 292
## 711 https://udn.com/news/story/6809/4813050 南海 4 100
## 712 https://udn.com/news/story/6809/4813538 中共 4 268
## 713 https://udn.com/news/story/6809/4813538 段落 4 268
## 714 https://udn.com/news/story/6809/4815509 中國 4 248
## 715 https://udn.com/news/story/6809/4815509 菅義偉 4 248
## 716 https://udn.com/news/story/6809/4815509 越南 4 248
## 717 https://udn.com/news/story/6809/4817433 主管 4 404
## 718 https://udn.com/news/story/6809/4817433 主權 4 404
## 719 https://udn.com/news/story/6809/4817433 指出 4 404
## 720 https://udn.com/news/story/6809/4817433 軍事 4 404
## 721 https://udn.com/news/story/6809/4817433 限制 4 404
## 722 https://udn.com/news/story/6809/4817433 區域 4 404
## 723 https://udn.com/news/story/6809/4877676 侵犯 4 191
## 724 https://udn.com/news/story/6809/4877676 菲律賓 4 191
## 725 https://udn.com/news/story/6809/4891329 距離 4 97
## 726 https://udn.com/news/story/6809/4925039 中國 4 124
## 727 https://udn.com/news/story/6809/4925039 演習 4 124
## 728 https://udn.com/news/story/6809/4925039 聲明 4 124
## 729 https://udn.com/news/story/6809/4933721 加賀 4 206
## 730 https://udn.com/news/story/6809/4933721 侃號 4 206
## 731 https://udn.com/news/story/6809/4933721 區域 4 206
## 732 https://udn.com/news/story/6809/4933721 聯合 4 206
## 733 https://udn.com/news/story/6809/4934837 中國 4 298
## 734 https://udn.com/news/story/6809/4934837 開展 4 298
## 735 https://udn.com/news/story/6809/4939570 安全 4 203
## 736 https://udn.com/news/story/6809/4939570 美國 4 203
## 737 https://udn.com/news/story/6809/4939570 海軍 4 203
## 738 https://udn.com/news/story/6809/4939570 區域 4 203
## 739 https://udn.com/news/story/6809/4939570 新聞稿 4 203
## 740 https://udn.com/news/story/6809/4947150 南海 4 38
## 741 https://udn.com/news/story/6809/5063760 大陸 4 450
## 742 https://udn.com/news/story/6809/5063760 中國 4 450
## 743 https://udn.com/news/story/6809/5063760 北京 4 450
## 744 https://udn.com/news/story/6809/5063760 吉隆坡 4 450
## 745 https://udn.com/news/story/6809/5063760 其實 4 450
## 746 https://udn.com/news/story/6809/5063760 建立 4 450
## 747 https://udn.com/news/story/6809/5063760 海上 4 450
## 748 https://udn.com/news/story/6809/5063760 馬來西亞 4 450
## 749 https://udn.com/news/story/6809/5063760 第一線 4 450
## 750 https://udn.com/news/story/6809/5063760 處理 4 450
## 751 https://udn.com/news/story/6809/5063760 傳播 4 450
## 752 https://udn.com/news/story/6809/5123283 公里 4 319
## 753 https://udn.com/news/story/6809/5123283 可能 4 319
## 754 https://udn.com/news/story/6809/5217399 自由 4 102
## 755 https://udn.com/news/story/6809/5217399 行動 4 102
## 756 https://udn.com/news/story/6809/5217399 海軍 4 102
## 757 https://udn.com/news/story/6809/5225330 中國 4 260
## 758 https://udn.com/news/story/6809/5225330 南海 4 260
## 759 https://udn.com/news/story/6809/5225330 飛彈 4 260
## 760 https://udn.com/news/story/6809/5225330 進行 4 260
## 761 https://udn.com/news/story/6809/5255445 主張 4 211
## 762 https://udn.com/news/story/6809/5255445 南海 4 211
## 763 https://udn.com/news/story/6809/5255445 國家 4 211
## 764 https://udn.com/news/story/6809/5263091 立場 4 376
## 765 https://udn.com/news/story/6809/5263091 行動 4 376
## 766 https://udn.com/news/story/6809/5263091 動武 4 376
## 767 https://udn.com/news/story/6809/5263091 菲律賓 4 376
## 768 https://udn.com/news/story/6809/5263091 關切 4 376
## 769 https://udn.com/news/story/6809/5352633 聯合 4 205
## 770 https://udn.com/news/story/6809/5365698 北京 4 186
## 771 https://udn.com/news/story/6809/5365698 南海 4 186
## 772 https://udn.com/news/story/6809/5369418 中方 4 222
## 773 https://udn.com/news/story/6809/5369418 牛軛 4 222
## 774 https://udn.com/news/story/6809/5369418 立堅 4 222
## 775 https://udn.com/news/story/6809/5369418 南海 4 222
## 776 https://udn.com/news/story/6809/5370058 疫苗 4 211
## 777 https://udn.com/news/story/6809/5370058 馬尼拉 4 211
## 778 https://udn.com/news/story/6809/5376403 軍事 4 312
## 779 https://udn.com/news/story/6809/5376403 區域 4 312
## 780 https://udn.com/news/story/6809/5381036 去年 4 206
## 781 https://udn.com/news/story/6809/5381036 協定 4 206
## 782 https://udn.com/news/story/6809/5381036 取消 4 206
## 783 https://udn.com/news/story/6809/5381036 美國 4 206
## 784 https://udn.com/news/story/6809/5400212 北京 4 168
## 785 https://udn.com/news/story/6809/5400212 仲裁 4 168
## 786 https://udn.com/news/story/6809/5400212 菲律賓 4 168
## 787 https://udn.com/news/story/6811/4675655 行動 4 142
## 788 https://udn.com/news/story/6811/4812524 人造 4 266
## 789 https://udn.com/news/story/6811/4812524 美方 4 266
## 790 https://udn.com/news/story/6811/4812524 軍事 4 266
## 791 https://udn.com/news/story/6811/4812588 大陸 4 162
## 792 https://udn.com/news/story/6811/4812588 中交 4 162
## 793 https://udn.com/news/story/6811/4812588 天津 4 162
## 794 https://udn.com/news/story/6813/4542826 艾斯培 4 202
## 795 https://udn.com/news/story/6813/4542826 航行 4 202
## 796 https://udn.com/news/story/6813/4542826 國家 4 202
## 797 https://udn.com/news/story/6813/5002062 可能 4 258
## 798 https://udn.com/news/story/6813/5002062 貝爾 4 258
## 799 https://udn.com/news/story/6813/5002062 能力 4 258
## 800 https://udn.com/news/story/6813/5200106 打擊 4 162
## 801 https://udn.com/news/story/6813/5244746 美軍 4 166
## 802 https://udn.com/news/story/6813/5244746 海域 4 166
## 803 https://udn.com/news/story/6813/5244746 航行 4 166
## 804 https://udn.com/news/story/7331/4414231 美利堅 4 186
## 805 https://udn.com/news/story/7331/4414231 美國 4 186
## 806 https://udn.com/news/story/7331/4414231 新冠肺炎 4 186
## 807 https://udn.com/news/story/7331/4488979 西太平洋 4 221
## 808 https://udn.com/news/story/7331/4488979 南海 4 221
## 809 https://udn.com/news/story/7331/4488979 海軍 4 221
## 810 https://udn.com/news/story/7331/4488979 新冠肺炎 4 221
## 811 https://udn.com/news/story/7331/4503537 地物 4 190
## 812 https://udn.com/news/story/7331/4503537 南沙 4 190
## 813 https://udn.com/news/story/7331/4503537 南海 4 190
## 814 https://udn.com/news/story/7331/4530327 大陸 4 218
## 815 https://udn.com/news/story/7331/4530327 中國 4 218
## 816 https://udn.com/news/story/7331/4530327 表示 4 218
## 817 https://udn.com/news/story/7331/4530327 美方 4 218
## 818 https://udn.com/news/story/7331/4530327 報導 4 218
## 819 https://udn.com/news/story/7331/4530327 越南 4 218
## 820 https://udn.com/news/story/7331/4530327 新冠肺炎 4 218
## 821 https://udn.com/news/story/7331/4557178 台灣 4 148
## 822 https://udn.com/news/story/7331/4557178 南海 4 148
## 823 https://udn.com/news/story/7331/4557178 報導 4 148
## 824 https://udn.com/news/story/7331/4605008 表示 4 268
## 825 https://udn.com/news/story/7331/4605008 消息人士 4 268
## 826 https://udn.com/news/story/7331/4681864 海上 4 231
## 827 https://udn.com/news/story/7331/4681864 海域 4 231
## 828 https://udn.com/news/story/7331/4681864 演習 4 231
## 829 https://udn.com/news/story/7331/4697199 挑釁 4 274
## 830 https://udn.com/news/story/7331/4697199 進行 4 274
## 831 https://udn.com/news/story/7331/4699962 使館 4 129
## 832 https://udn.com/news/story/7331/4699962 和平 4 129
## 833 https://udn.com/news/story/7331/4699962 穩定 4 129
## 834 https://udn.com/news/story/7331/4702018 地區 4 181
## 835 https://udn.com/news/story/7331/4702018 美方 4 181
## 836 https://udn.com/news/story/7331/4703971 飛行 4 200
## 837 https://udn.com/news/story/7331/4703971 飛機 4 200
## 838 https://udn.com/news/story/7331/4703971 偵察 4 200
## 839 https://udn.com/news/story/7331/4703971 監視 4 200
## 840 https://udn.com/news/story/7331/4703971 聯合 4 200
## 841 https://udn.com/news/story/7331/4704552 美國 4 216
## 842 https://udn.com/news/story/7331/4704552 華春瑩 4 216
## 843 https://udn.com/news/story/7331/4704552 維護 4 216
## 844 https://udn.com/news/story/7331/4713477 美軍 4 266
## 845 https://udn.com/news/story/7331/4713477 軍事 4 266
## 846 https://udn.com/news/story/7331/4713477 演習 4 266
## 847 https://udn.com/news/story/7331/4713477 衛星 4 266
## 848 https://udn.com/news/story/7331/4713478 公司 4 208
## 849 https://udn.com/news/story/7331/4713478 史達偉 4 208
## 850 https://udn.com/news/story/7331/4713478 南海 4 208
## 851 https://udn.com/news/story/7331/4713478 國企 4 208
## 852 https://udn.com/news/story/7331/4713478 國家 4 208
## 853 https://udn.com/news/story/7331/4713478 報導 4 208
## 854 https://udn.com/news/story/7331/4713855 相關 4 189
## 855 https://udn.com/news/story/7331/4713855 衛星 4 189
## 856 https://udn.com/news/story/7331/4724139 巡邏機 4 214
## 857 https://udn.com/news/story/7331/4724139 海上 4 214
## 858 https://udn.com/news/story/7331/4724139 偵察機 4 214
## 859 https://udn.com/news/story/7331/4727917 進入 4 142
## 860 https://udn.com/news/story/7331/4731672 軍機 4 186
## 861 https://udn.com/news/story/7331/4731750 反潛機 4 279
## 862 https://udn.com/news/story/7331/4731750 海洋 4 279
## 863 https://udn.com/news/story/7331/4731750 聲明 4 279
## 864 https://udn.com/news/story/7331/4737312 汪文斌 4 291
## 865 https://udn.com/news/story/7331/4737312 國家 4 291
## 866 https://udn.com/news/story/7331/4742714 上空 4 396
## 867 https://udn.com/news/story/7331/4742714 大陸 4 396
## 868 https://udn.com/news/story/7331/4742714 巡邏機 4 396
## 869 https://udn.com/news/story/7331/4742714 美軍 4 396
## 870 https://udn.com/news/story/7331/4742714 進入 4 396
## 871 https://udn.com/news/story/7331/4751677 平台 4 138
## 872 https://udn.com/news/story/7331/4751677 活動 4 138
## 873 https://udn.com/news/story/7331/4785688 香港 4 121
## 874 https://udn.com/news/story/7331/4803877 活動 4 157
## 875 https://udn.com/news/story/7331/4803877 海事局 4 157
## 876 https://udn.com/news/story/7331/4813671 南海 4 140
## 877 https://udn.com/news/story/7331/4814984 企業 4 91
## 878 https://udn.com/news/story/7331/4816369 力量 4 253
## 879 https://udn.com/news/story/7331/4816369 美方 4 253
## 880 https://udn.com/news/story/7331/4816369 美國 4 253
## 881 https://udn.com/news/story/7331/4816369 軍事 4 253
## 882 https://udn.com/news/story/7331/4816369 海空 4 253
## 883 https://udn.com/news/story/7331/4817559 大陸 4 97
## 884 https://udn.com/news/story/7331/4832251 地區 4 233
## 885 https://udn.com/news/story/7331/4832251 照輝 4 233
## 886 https://udn.com/news/story/7331/4832768 中國 4 111
## 887 https://udn.com/news/story/7331/4832768 戰略 4 111
## 888 https://udn.com/news/story/7331/4834648 大陸 4 349
## 889 https://udn.com/news/story/7331/4834648 平台 4 349
## 890 https://udn.com/news/story/7331/4834648 表示 4 349
## 891 https://udn.com/news/story/7331/4834648 計劃 4 349
## 892 https://udn.com/news/story/7331/4834648 進入 4 349
## 893 https://udn.com/news/story/7331/4834648 感知 4 349
## 894 https://udn.com/news/story/7331/4834648 態勢 4 349
## 895 https://udn.com/news/story/7331/4834648 戰略 4 349
## 896 https://udn.com/news/story/7331/4849422 王毅 4 272
## 897 https://udn.com/news/story/7331/4849422 政治 4 272
## 898 https://udn.com/news/story/7331/4849422 軍事 4 272
## 899 https://udn.com/news/story/7331/4899934 公尺 4 164
## 900 https://udn.com/news/story/7331/4899934 南海 4 164
## 901 https://udn.com/news/story/7331/4922504 中國 4 262
## 902 https://udn.com/news/story/7331/4922504 今年 4 262
## 903 https://udn.com/news/story/7331/4922504 相遇 4 262
## 904 https://udn.com/news/story/7331/4926456 外長 4 128
## 905 https://udn.com/news/story/7331/5039328 工委 4 198
## 906 https://udn.com/news/story/7331/5039328 出任 4 198
## 907 https://udn.com/news/story/7331/5220062 水兵 4 90
## 908 https://udn.com/news/story/7331/5220062 研究 4 90
## 909 https://udn.com/news/story/7331/5220062 問題 4 90
## 910 https://udn.com/news/story/7331/5220062 潛艦 4 90
## 911 https://udn.com/news/story/7331/5235138 戰區 4 99
## 912 https://udn.com/news/story/7331/5285610 自由 4 128
## 913 https://udn.com/news/story/7331/5285610 表示 4 128
## 914 https://udn.com/news/story/7331/5285610 航行 4 128
## 915 https://udn.com/news/story/7331/5285610 國家 4 128
## 916 https://udn.com/news/story/7331/5287493 不要 4 428
## 917 https://udn.com/news/story/7331/5287493 中美關係 4 428
## 918 https://udn.com/news/story/7331/5287493 世界 4 428
## 919 https://udn.com/news/story/7331/5287493 考慮 4 428
## 920 https://udn.com/news/story/7331/5287493 很大 4 428
## 921 https://udn.com/news/story/7331/5287493 崛起 4 428
## 922 https://udn.com/news/story/7331/5287493 程度 4 428
## 923 https://udn.com/news/story/7331/5287493 賈慶國 4 428
## 924 https://udn.com/news/story/7331/5287493 關係 4 428
## 925 https://udn.com/news/story/7331/5294249 航行 4 279
## 926 https://udn.com/news/story/7331/5301066 台灣 4 270
## 927 https://udn.com/news/story/7331/5301066 合作 4 270
## 928 https://udn.com/news/story/7331/5301066 美國 4 270
## 929 https://udn.com/news/story/7331/5301066 問題 4 270
## 930 https://udn.com/news/story/7331/5301066 議題 4 270
## 931 https://udn.com/news/story/7331/5358554 南海 4 86
## 932 https://udn.com/news/story/7331/5359369 卡爾加里 4 121
## 933 https://udn.com/news/story/7331/5365152 平台 4 217
## 934 https://udn.com/news/story/7331/5365152 計畫 4 217
## 935 https://udn.com/news/story/7331/5365152 航母 4 217
## 936 https://udn.com/news/story/7331/5365152 斯廷號 4 217
## 937 https://udn.com/news/story/7331/5365152 感知 4 217
## 938 https://udn.com/news/story/7331/5365152 態勢 4 217
## 939 https://udn.com/news/story/7331/5365152 戰略 4 217
## 940 https://udn.com/news/story/7331/5365152 羅斯福 4 217
## 941 https://udn.com/news/story/7331/5388998 共軍 4 126
## 942 https://udn.com/news/story/7331/5388998 南海 4 126
## 943 https://udn.com/news/story/7331/5388998 訓練 4 126
## 944 https://udn.com/news/story/7331/5388998 實彈射擊 4 126
## 945 https://udn.com/news/story/7331/5388998 演習 4 126
## 946 https://udn.com/news/story/7331/5393116 南海 4 100
## 947 https://udn.com/news/story/7331/5393116 偵察機 4 100
## 948 https://udn.com/news/story/7331/5393116 進行 4 100
## 949 https://udn.com/news/story/7331/5393116 電子 4 100
## 950 https://udn.com/news/story/7331/5401625 大陸 4 202
## 951 https://udn.com/news/story/7331/5401625 合作 4 202
## 952 https://udn.com/news/story/7331/5401625 國家 4 202
## 953 https://udn.com/news/story/7332/4388480 工作 4 184
## 954 https://udn.com/news/story/7332/4388480 進行 4 184
## 955 https://udn.com/news/story/7332/4591030 武漢 4 126
## 956 https://udn.com/news/story/7332/4591030 高福 4 126
## 957 https://udn.com/news/story/7332/4876640 水下 4 280
## 958 https://udn.com/news/story/7332/4876640 南海 4 280
## 959 https://udn.com/news/story/7332/4876640 海上 4 280
## 960 https://udn.com/news/story/7332/4876640 報導 4 280
## 961 https://udn.com/news/story/7333/4704558 地區 4 145
## 962 https://udn.com/news/story/7333/4704558 華春瑩 4 145
## 963 https://udn.com/news/story/7333/4813542 地區 4 97
## 964 https://udn.com/news/story/7333/5401465 大陸 4 154
## 965 https://udn.com/news/story/7333/5401465 政治 4 154
## 966 https://udn.com/news/story/7333/5401465 論壇 4 154
## 967 https://udn.com/news/story/120675/4281503 中國 3 264
## 968 https://udn.com/news/story/120675/4281503 公共 3 264
## 969 https://udn.com/news/story/120675/4281503 旅客 3 264
## 970 https://udn.com/news/story/120675/4281503 病情 3 264
## 971 https://udn.com/news/story/120675/4281503 發現 3 264
## 972 https://udn.com/news/story/120675/4281503 衛生部 3 264
## 973 https://udn.com/news/story/120675/4281503 醫療 3 264
## 974 https://udn.com/news/story/120675/4281503 爆發 3 264
## 975 https://udn.com/news/story/121687/5199268 目標 3 257
## 976 https://udn.com/news/story/121687/5199268 軍事 3 257
## 977 https://udn.com/news/story/121687/5199268 海域 3 257
## 978 https://udn.com/news/story/121687/5199268 國防部 3 257
## 979 https://udn.com/news/story/121687/5199268 演練 3 257
## 980 https://udn.com/news/story/121687/5199268 練兵 3 257
## 981 https://udn.com/news/story/121687/5199268 衛星 3 257
## 982 https://udn.com/news/story/121687/5212213 外交 3 295
## 983 https://udn.com/news/story/121687/5212213 外長 3 295
## 984 https://udn.com/news/story/121687/5212213 強調 3 295
## 985 https://udn.com/news/story/121687/5212213 範圍 3 295
## 986 https://udn.com/news/story/121687/5212213 談到 3 295
## 987 https://udn.com/news/story/121687/5215820 上週 3 503
## 988 https://udn.com/news/story/121687/5215820 分析家 3 503
## 989 https://udn.com/news/story/121687/5215820 任命 3 503
## 990 https://udn.com/news/story/121687/5215820 防衛 3 503
## 991 https://udn.com/news/story/121687/5215820 承諾 3 503
## 992 https://udn.com/news/story/121687/5215820 美日 3 503
## 993 https://udn.com/news/story/121687/5215820 重大 3 503
## 994 https://udn.com/news/story/121687/5215820 展現 3 503
## 995 https://udn.com/news/story/121687/5215820 國家 3 503
## 996 https://udn.com/news/story/121687/5215820 這類 3 503
## 997 https://udn.com/news/story/121687/5215820 最近 3 503
## 998 https://udn.com/news/story/121687/5215820 進入 3 503
## 999 https://udn.com/news/story/121687/5215820 當局 3 503
## 1000 https://udn.com/news/story/121687/5215820 說法 3 503
## 1001 https://udn.com/news/story/121687/5215820 衝突 3 503
## 1002 https://udn.com/news/story/121687/5215820 聯合 3 503
## 1003 https://udn.com/news/story/121687/5215820 艦隊 3 503
## 1004 https://udn.com/news/story/122051/5368627 之間 3 239
## 1005 https://udn.com/news/story/122051/5368627 太平洋 3 239
## 1006 https://udn.com/news/story/122051/5368627 亞洲 3 239
## 1007 https://udn.com/news/story/122051/5368627 兩國 3 239
## 1008 https://udn.com/news/story/122051/5368627 派遣 3 239
## 1009 https://udn.com/news/story/122051/5368627 海上 3 239
## 1010 https://udn.com/news/story/122051/5368627 解放軍 3 239
## 1011 https://udn.com/news/story/122051/5368627 駛入 3 239
## 1012 https://udn.com/news/story/122051/5368627 遼寧 3 239
## 1013 https://udn.com/news/story/122051/5369349 美軍 3 103
## 1014 https://udn.com/news/story/122051/5369349 海軍 3 103
## 1015 https://udn.com/news/story/122051/5369349 號航艦 3 103
## 1016 https://udn.com/news/story/122051/5369962 表示 3 261
## 1017 https://udn.com/news/story/122051/5369962 美國 3 261
## 1018 https://udn.com/news/story/122051/5369962 訓練 3 261
## 1019 https://udn.com/news/story/122051/5369962 編隊 3 261
## 1020 https://udn.com/news/story/122051/5369962 遼寧 3 261
## 1021 https://udn.com/news/story/12586/4730402 不會 3 375
## 1022 https://udn.com/news/story/12586/4730402 局部 3 375
## 1023 https://udn.com/news/story/12586/4730402 希望 3 375
## 1024 https://udn.com/news/story/12586/4730402 政治 3 375
## 1025 https://udn.com/news/story/12586/4730402 報導 3 375
## 1026 https://udn.com/news/story/12586/4732749 中共 3 339
## 1027 https://udn.com/news/story/12586/4732749 以西 3 339
## 1028 https://udn.com/news/story/12586/4732749 央視 3 339
## 1029 https://udn.com/news/story/12586/4732749 打靶 3 339
## 1030 https://udn.com/news/story/12586/4732749 打擊 3 339
## 1031 https://udn.com/news/story/12586/4732749 先後 3 339
## 1032 https://udn.com/news/story/12586/4732749 同樣 3 339
## 1033 https://udn.com/news/story/12586/4732749 披露 3 339
## 1034 https://udn.com/news/story/12586/4732749 則是 3 339
## 1035 https://udn.com/news/story/12586/4732749 南部 3 339
## 1036 https://udn.com/news/story/12586/4732749 為期 3 339
## 1037 https://udn.com/news/story/12586/4732749 美軍 3 339
## 1038 https://udn.com/news/story/12586/4732749 飛往 3 339
## 1039 https://udn.com/news/story/12586/4732749 海軍 3 339
## 1040 https://udn.com/news/story/12586/4732749 偵察 3 339
## 1041 https://udn.com/news/story/12586/4732749 這一 3 339
## 1042 https://udn.com/news/story/12586/4732749 畫面 3 339
## 1043 https://udn.com/news/story/12586/4732749 感知 3 339
## 1044 https://udn.com/news/story/12586/4732749 雷州半島 3 339
## 1045 https://udn.com/news/story/12586/4732749 實彈 3 339
## 1046 https://udn.com/news/story/12586/4732749 實彈射擊 3 339
## 1047 https://udn.com/news/story/12586/4732749 態勢 3 339
## 1048 https://udn.com/news/story/12586/4732749 廣東 3 339
## 1049 https://udn.com/news/story/12586/4732749 戰略 3 339
## 1050 https://udn.com/news/story/6809/4271642 政策 3 273
## 1051 https://udn.com/news/story/6809/4271642 海洋 3 273
## 1052 https://udn.com/news/story/6809/4271642 進展 3 273
## 1053 https://udn.com/news/story/6809/4272045 平明 3 158
## 1054 https://udn.com/news/story/6809/4272045 合作 3 158
## 1055 https://udn.com/news/story/6809/4272045 阮春福 3 158
## 1056 https://udn.com/news/story/6809/4272045 政府 3 158
## 1057 https://udn.com/news/story/6809/4272045 茂木敏充 3 158
## 1058 https://udn.com/news/story/6809/4272045 問題 3 158
## 1059 https://udn.com/news/story/6809/4272045 越方 3 158
## 1060 https://udn.com/news/story/6809/4272045 會晤 3 158
## 1061 https://udn.com/news/story/6809/4272045 雙方 3 158
## 1062 https://udn.com/news/story/6809/4279234 去年 3 268
## 1063 https://udn.com/news/story/6809/4279234 外交部 3 268
## 1064 https://udn.com/news/story/6809/4279234 石油 3 268
## 1065 https://udn.com/news/story/6809/4279234 爭議 3 268
## 1066 https://udn.com/news/story/6809/4279234 附近 3 268
## 1067 https://udn.com/news/story/6809/4279234 南海 3 268
## 1068 https://udn.com/news/story/6809/4279234 國家 3 268
## 1069 https://udn.com/news/story/6809/4279234 密切 3 268
## 1070 https://udn.com/news/story/6809/4279234 越方 3 268
## 1071 https://udn.com/news/story/6809/4279234 黎氏秋恆 3 268
## 1072 https://udn.com/news/story/6809/4279234 舉動 3 268
## 1073 https://udn.com/news/story/6809/4279234 離開 3 268
## 1074 https://udn.com/news/story/6809/4308863 美國 3 75
## 1075 https://udn.com/news/story/6809/4308863 航行 3 75
## 1076 https://udn.com/news/story/6809/4313108 表達 3 348
## 1077 https://udn.com/news/story/6809/4313108 南海 3 348
## 1078 https://udn.com/news/story/6809/4313108 持續 3 348
## 1079 https://udn.com/news/story/6809/4313108 海底 3 348
## 1080 https://udn.com/news/story/6809/4313108 國防部 3 348
## 1081 https://udn.com/news/story/6809/4313108 部署 3 348
## 1082 https://udn.com/news/story/6809/4313108 瑞德 3 348
## 1083 https://udn.com/news/story/6809/4313108 電纜 3 348
## 1084 https://udn.com/news/story/6809/4313108 演講 3 348
## 1085 https://udn.com/news/story/6809/4313108 戰艦 3 348
## 1086 https://udn.com/news/story/6809/4503516 挑釁 3 127
## 1087 https://udn.com/news/story/6809/4503516 報導 3 127
## 1088 https://udn.com/news/story/6809/4504105 主權 3 102
## 1089 https://udn.com/news/story/6809/4504105 西沙 3 102
## 1090 https://udn.com/news/story/6809/4504105 南沙 3 102
## 1091 https://udn.com/news/story/6809/4504105 島礁 3 102
## 1092 https://udn.com/news/story/6809/4504105 海域 3 102
## 1093 https://udn.com/news/story/6809/4504105 群島 3 102
## 1094 https://udn.com/news/story/6809/4551117 太平洋 3 178
## 1095 https://udn.com/news/story/6809/4551117 自由 3 178
## 1096 https://udn.com/news/story/6809/4551117 東南亞 3 178
## 1097 https://udn.com/news/story/6809/4551117 南中國海 3 178
## 1098 https://udn.com/news/story/6809/4551117 艦隊 3 178
## 1099 https://udn.com/news/story/6809/4565919 主張 3 372
## 1100 https://udn.com/news/story/6809/4565919 台灣 3 372
## 1101 https://udn.com/news/story/6809/4565919 冠狀病毒 3 372
## 1102 https://udn.com/news/story/6809/4565919 昨天 3 372
## 1103 https://udn.com/news/story/6809/4565919 活動 3 372
## 1104 https://udn.com/news/story/6809/4565919 執行 3 372
## 1105 https://udn.com/news/story/6809/4565919 報導 3 372
## 1106 https://udn.com/news/story/6809/4651251 三艘 3 205
## 1107 https://udn.com/news/story/6809/4651251 太平洋 3 205
## 1108 https://udn.com/news/story/6809/4651251 尼米茲 3 205
## 1109 https://udn.com/news/story/6809/4651251 海上 3 205
## 1110 https://udn.com/news/story/6809/4651251 菲律賓海 3 205
## 1111 https://udn.com/news/story/6809/4651251 演習 3 205
## 1112 https://udn.com/news/story/6809/4651251 演練 3 205
## 1113 https://udn.com/news/story/6809/4651251 羅斯福 3 205
## 1114 https://udn.com/news/story/6809/4678024 兩艘 3 184
## 1115 https://udn.com/news/story/6809/4678024 表示 3 184
## 1116 https://udn.com/news/story/6809/4678024 海軍 3 184
## 1117 https://udn.com/news/story/6809/4678024 報導 3 184
## 1118 https://udn.com/news/story/6809/4678125 包括 3 205
## 1119 https://udn.com/news/story/6809/4678125 軍事 3 205
## 1120 https://udn.com/news/story/6809/4678125 軍演 3 205
## 1121 https://udn.com/news/story/6809/4678125 進行 3 205
## 1122 https://udn.com/news/story/6809/4678125 雷根 3 205
## 1123 https://udn.com/news/story/6809/4678125 維科夫 3 205
## 1124 https://udn.com/news/story/6809/4678125 舉行 3 205
## 1125 https://udn.com/news/story/6809/4682238 中國 3 143
## 1126 https://udn.com/news/story/6809/4682238 可能性 3 143
## 1127 https://udn.com/news/story/6809/4682238 波林 3 143
## 1128 https://udn.com/news/story/6809/4682238 南海 3 143
## 1129 https://udn.com/news/story/6809/4682238 訊息 3 143
## 1130 https://udn.com/news/story/6809/4682238 當地 3 143
## 1131 https://udn.com/news/story/6809/4682642 表示 3 186
## 1132 https://udn.com/news/story/6809/4682642 軍演 3 186
## 1133 https://udn.com/news/story/6809/4686528 三國 3 215
## 1134 https://udn.com/news/story/6809/4686528 印太 3 215
## 1135 https://udn.com/news/story/6809/4686528 地區 3 215
## 1136 https://udn.com/news/story/6809/4686528 呼籲 3 215
## 1137 https://udn.com/news/story/6809/4686528 持續 3 215
## 1138 https://udn.com/news/story/6809/4686528 軍事 3 215
## 1139 https://udn.com/news/story/6809/4686528 重申 3 215
## 1140 https://udn.com/news/story/6809/4686528 關注 3 215
## 1141 https://udn.com/news/story/6809/4695303 太平洋 3 252
## 1142 https://udn.com/news/story/6809/4695303 日方 3 252
## 1143 https://udn.com/news/story/6809/4695303 日本政府 3 252
## 1144 https://udn.com/news/story/6809/4695303 共享 3 252
## 1145 https://udn.com/news/story/6809/4695303 空域 3 252
## 1146 https://udn.com/news/story/6809/4695303 南海 3 252
## 1147 https://udn.com/news/story/6809/4695303 宮古 3 252
## 1148 https://udn.com/news/story/6809/4695303 強化 3 252
## 1149 https://udn.com/news/story/6809/4695303 警戒 3 252
## 1150 https://udn.com/news/story/6809/4699778 拒絕 3 214
## 1151 https://udn.com/news/story/6809/4699778 東南亞 3 214
## 1152 https://udn.com/news/story/6809/4699778 權利 3 214
## 1153 https://udn.com/news/story/6809/4699831 中國 3 134
## 1154 https://udn.com/news/story/6809/4699831 地區 3 134
## 1155 https://udn.com/news/story/6809/4699831 行動 3 134
## 1156 https://udn.com/news/story/6809/4699831 資源 3 134
## 1157 https://udn.com/news/story/6809/4702067 海上 3 236
## 1158 https://udn.com/news/story/6809/4702067 國際 3 236
## 1159 https://udn.com/news/story/6809/4702067 鄰國 3 236
## 1160 https://udn.com/news/story/6809/4702142 中國 3 248
## 1161 https://udn.com/news/story/6809/4702142 地貌 3 248
## 1162 https://udn.com/news/story/6809/4702142 馬來西亞 3 248
## 1163 https://udn.com/news/story/6809/4702142 龐培 3 248
## 1164 https://udn.com/news/story/6809/4702638 大陸 3 245
## 1165 https://udn.com/news/story/6809/4702638 中國 3 245
## 1166 https://udn.com/news/story/6809/4702638 允許 3 245
## 1167 https://udn.com/news/story/6809/4702638 台灣 3 245
## 1168 https://udn.com/news/story/6809/4702638 所有 3 245
## 1169 https://udn.com/news/story/6809/4702638 海事 3 245
## 1170 https://udn.com/news/story/6809/4702638 海洋 3 245
## 1171 https://udn.com/news/story/6809/4702638 越南 3 245
## 1172 https://udn.com/news/story/6809/4702638 範圍 3 245
## 1173 https://udn.com/news/story/6809/4702638 質疑 3 245
## 1174 https://udn.com/news/story/6809/4707133 立場 3 101
## 1175 https://udn.com/news/story/6809/4707133 自由 3 101
## 1176 https://udn.com/news/story/6809/4707133 非常 3 101
## 1177 https://udn.com/news/story/6809/4707133 航行 3 101
## 1178 https://udn.com/news/story/6809/4707133 繼續 3 101
## 1179 https://udn.com/news/story/6809/4709443 一再 3 761
## 1180 https://udn.com/news/story/6809/4709443 一次 3 761
## 1181 https://udn.com/news/story/6809/4709443 入侵 3 761
## 1182 https://udn.com/news/story/6809/4709443 可能 3 761
## 1183 https://udn.com/news/story/6809/4709443 西方 3 761
## 1184 https://udn.com/news/story/6809/4709443 克里米亞 3 761
## 1185 https://udn.com/news/story/6809/4709443 亞洲 3 761
## 1186 https://udn.com/news/story/6809/4709443 周邊 3 761
## 1187 https://udn.com/news/story/6809/4709443 和平 3 761
## 1188 https://udn.com/news/story/6809/4709443 表示 3 761
## 1189 https://udn.com/news/story/6809/4709443 俄羅斯 3 761
## 1190 https://udn.com/news/story/6809/4709443 展現 3 761
## 1191 https://udn.com/news/story/6809/4709443 國務卿 3 761
## 1192 https://udn.com/news/story/6809/4709443 帶來 3 761
## 1193 https://udn.com/news/story/6809/4709443 裁決 3 761
## 1194 https://udn.com/news/story/6809/4709443 進行 3 761
## 1195 https://udn.com/news/story/6809/4709443 意味著 3 761
## 1196 https://udn.com/news/story/6809/4709443 盟友 3 761
## 1197 https://udn.com/news/story/6809/4709443 經驗 3 761
## 1198 https://udn.com/news/story/6809/4709443 預期 3 761
## 1199 https://udn.com/news/story/6809/4709443 對外 3 761
## 1200 https://udn.com/news/story/6809/4709443 認為 3 761
## 1201 https://udn.com/news/story/6809/4709443 適度 3 761
## 1202 https://udn.com/news/story/6809/4709443 議題 3 761
## 1203 https://udn.com/news/story/6809/4724267 上空 3 192
## 1204 https://udn.com/news/story/6809/4724267 美國 3 192
## 1205 https://udn.com/news/story/6809/4724267 計畫 3 192
## 1206 https://udn.com/news/story/6809/4724267 飛行 3 192
## 1207 https://udn.com/news/story/6809/4724267 海上 3 192
## 1208 https://udn.com/news/story/6809/4724267 偵察 3 192
## 1209 https://udn.com/news/story/6809/4724267 接近 3 192
## 1210 https://udn.com/news/story/6809/4724267 感知 3 192
## 1211 https://udn.com/news/story/6809/4724267 態勢 3 192
## 1212 https://udn.com/news/story/6809/4724267 廣東 3 192
## 1213 https://udn.com/news/story/6809/4724267 戰略 3 192
## 1214 https://udn.com/news/story/6809/4765714 今天 3 270
## 1215 https://udn.com/news/story/6809/4765714 艾斯培 3 270
## 1216 https://udn.com/news/story/6809/4765714 表示 3 270
## 1217 https://udn.com/news/story/6809/4765714 重要 3 270
## 1218 https://udn.com/news/story/6809/4775709 人士 3 211
## 1219 https://udn.com/news/story/6809/4775709 引述 3 211
## 1220 https://udn.com/news/story/6809/4775709 北京 3 211
## 1221 https://udn.com/news/story/6809/4775709 局勢 3 211
## 1222 https://udn.com/news/story/6809/4775709 溝通 3 211
## 1223 https://udn.com/news/story/6809/4786257 所屬 3 170
## 1224 https://udn.com/news/story/6809/4786257 指出 3 170
## 1225 https://udn.com/news/story/6809/4786257 射擊 3 170
## 1226 https://udn.com/news/story/6809/4786257 部隊 3 170
## 1227 https://udn.com/news/story/6809/4786257 駐港部隊 3 170
## 1228 https://udn.com/news/story/6809/4808733 公約 3 196
## 1229 https://udn.com/news/story/6809/4808733 美國 3 196
## 1230 https://udn.com/news/story/6809/4808733 候選人 3 196
## 1231 https://udn.com/news/story/6809/4808733 當選 3 196
## 1232 https://udn.com/news/story/6809/4808733 聯合國 3 196
## 1233 https://udn.com/news/story/6809/4812685 子公司 3 292
## 1234 https://udn.com/news/story/6809/4812685 中交 3 292
## 1235 https://udn.com/news/story/6809/4812685 中共 3 292
## 1236 https://udn.com/news/story/6809/4812685 主權 3 292
## 1237 https://udn.com/news/story/6809/4812685 北京 3 292
## 1238 https://udn.com/news/story/6809/4812685 行為 3 292
## 1239 https://udn.com/news/story/6809/4812685 航道局 3 292
## 1240 https://udn.com/news/story/6809/4812685 商務部 3 292
## 1241 https://udn.com/news/story/6809/4812685 國有企業 3 292
## 1242 https://udn.com/news/story/6809/4812685 清單 3 292
## 1243 https://udn.com/news/story/6809/4812685 龐培 3 292
## 1244 https://udn.com/news/story/6809/4812685 譴責 3 292
## 1245 https://udn.com/news/story/6809/4812688 人工島 3 130
## 1246 https://udn.com/news/story/6809/4812688 大陸 3 130
## 1247 https://udn.com/news/story/6809/4812688 軍方 3 130
## 1248 https://udn.com/news/story/6809/4813050 中國 3 100
## 1249 https://udn.com/news/story/6809/4813538 文化 3 268
## 1250 https://udn.com/news/story/6809/4813538 所有 3 268
## 1251 https://udn.com/news/story/6809/4813538 爭議 3 268
## 1252 https://udn.com/news/story/6809/4813538 政治 3 268
## 1253 https://udn.com/news/story/6809/4813538 售出 3 268
## 1254 https://udn.com/news/story/6809/4813538 國家 3 268
## 1255 https://udn.com/news/story/6809/4813538 這款 3 268
## 1256 https://udn.com/news/story/6809/4813538 劃歸 3 268
## 1257 https://udn.com/news/story/6809/4813538 維多利亞州 3 268
## 1258 https://udn.com/news/story/6809/4815509 內閣 3 248
## 1259 https://udn.com/news/story/6809/4815509 反對 3 248
## 1260 https://udn.com/news/story/6809/4815509 日本 3 248
## 1261 https://udn.com/news/story/6809/4815509 主權 3 248
## 1262 https://udn.com/news/story/6809/4815509 加劇 3 248
## 1263 https://udn.com/news/story/6809/4815509 外交部 3 248
## 1264 https://udn.com/news/story/6809/4815509 各國 3 248
## 1265 https://udn.com/news/story/6809/4815509 存在 3 248
## 1266 https://udn.com/news/story/6809/4815509 協商 3 248
## 1267 https://udn.com/news/story/6809/4815509 和平解決 3 248
## 1268 https://udn.com/news/story/6809/4815509 官房長官 3 248
## 1269 https://udn.com/news/story/6809/4815509 侵犯 3 248
## 1270 https://udn.com/news/story/6809/4815509 紛爭 3 248
## 1271 https://udn.com/news/story/6809/4815509 記者會 3 248
## 1272 https://udn.com/news/story/6809/4815509 強烈 3 248
## 1273 https://udn.com/news/story/6809/4815509 情勢 3 248
## 1274 https://udn.com/news/story/6809/4815509 陸辛 3 248
## 1275 https://udn.com/news/story/6809/4815509 發言人 3 248
## 1276 https://udn.com/news/story/6809/4815509 準則 3 248
## 1277 https://udn.com/news/story/6809/4815509 緊張 3 248
## 1278 https://udn.com/news/story/6809/4815509 需要 3 248
## 1279 https://udn.com/news/story/6809/4815509 複雜化 3 248
## 1280 https://udn.com/news/story/6809/4815509 黎氏秋恆 3 248
## 1281 https://udn.com/news/story/6809/4815509 聲明 3 248
## 1282 https://udn.com/news/story/6809/4817433 中交 3 404
## 1283 https://udn.com/news/story/6809/4817433 可能 3 404
## 1284 https://udn.com/news/story/6809/4817433 行動 3 404
## 1285 https://udn.com/news/story/6809/4817433 告訴 3 404
## 1286 https://udn.com/news/story/6809/4817433 宣布 3 404
## 1287 https://udn.com/news/story/6809/4817433 家人 3 404
## 1288 https://udn.com/news/story/6809/4817433 國務卿 3 404
## 1289 https://udn.com/news/story/6809/4817433 彭博 3 404
## 1290 https://udn.com/news/story/6809/4817433 發射 3 404
## 1291 https://udn.com/news/story/6809/4817433 實施 3 404
## 1292 https://udn.com/news/story/6809/4817433 蓬佩奧 3 404
## 1293 https://udn.com/news/story/6809/4817433 簽證 3 404
## 1294 https://udn.com/news/story/6809/4877676 一般性 3 191
## 1295 https://udn.com/news/story/6809/4877676 內容 3 191
## 1296 https://udn.com/news/story/6809/4877676 政府 3 191
## 1297 https://udn.com/news/story/6809/4877676 涉及 3 191
## 1298 https://udn.com/news/story/6809/4877676 歐洲議會 3 191
## 1299 https://udn.com/news/story/6809/4877676 辯論 3 191
## 1300 https://udn.com/news/story/6809/4891329 南海 3 97
## 1301 https://udn.com/news/story/6809/4891329 美軍 3 97
## 1302 https://udn.com/news/story/6809/4891329 海浬 3 97
## 1303 https://udn.com/news/story/6809/4891329 偵察機 3 97
## 1304 https://udn.com/news/story/6809/4925039 防衛 3 124
## 1305 https://udn.com/news/story/6809/4925039 軍事 3 124
## 1306 https://udn.com/news/story/6809/4925039 軍艦 3 124
## 1307 https://udn.com/news/story/6809/4933721 印太 3 206
## 1308 https://udn.com/news/story/6809/4933721 自衛隊 3 206
## 1309 https://udn.com/news/story/6809/4933721 指出 3 206
## 1310 https://udn.com/news/story/6809/4933721 美軍 3 206
## 1311 https://udn.com/news/story/6809/4933721 新聞稿 3 206
## 1312 https://udn.com/news/story/6809/4933721 盟友 3 206
## 1313 https://udn.com/news/story/6809/4933721 穩定 3 206
## 1314 https://udn.com/news/story/6809/4933721 關係 3 206
## 1315 https://udn.com/news/story/6809/4933721 艦長 3 206
## 1316 https://udn.com/news/story/6809/4934837 大規模 3 298
## 1317 https://udn.com/news/story/6809/4934837 太平洋 3 298
## 1318 https://udn.com/news/story/6809/4934837 出現 3 298
## 1319 https://udn.com/news/story/6809/4934837 回到 3 298
## 1320 https://udn.com/news/story/6809/4934837 近期 3 298
## 1321 https://udn.com/news/story/6809/4934837 美方 3 298
## 1322 https://udn.com/news/story/6809/4934837 軍事 3 298
## 1323 https://udn.com/news/story/6809/4934837 情況 3 298
## 1324 https://udn.com/news/story/6809/4934837 發布 3 298
## 1325 https://udn.com/news/story/6809/4934837 傷亡 3 298
## 1326 https://udn.com/news/story/6809/4934837 演習 3 298
## 1327 https://udn.com/news/story/6809/4934837 艦隊 3 298
## 1328 https://udn.com/news/story/6809/4939570 印度洋 3 203
## 1329 https://udn.com/news/story/6809/4939570 指出 3 203
## 1330 https://udn.com/news/story/6809/4939570 美軍 3 203
## 1331 https://udn.com/news/story/6809/4939570 海上 3 203
## 1332 https://udn.com/news/story/6809/4939570 這次 3 203
## 1333 https://udn.com/news/story/6809/4939570 夥伴 3 203
## 1334 https://udn.com/news/story/6809/4939570 演訓 3 203
## 1335 https://udn.com/news/story/6809/4939570 演練 3 203
## 1336 https://udn.com/news/story/6809/5063760 失控 3 450
## 1337 https://udn.com/news/story/6809/5063760 任務 3 450
## 1338 https://udn.com/news/story/6809/5063760 此等 3 450
## 1339 https://udn.com/news/story/6809/5063760 社會 3 450
## 1340 https://udn.com/news/story/6809/5063760 南海 3 450
## 1341 https://udn.com/news/story/6809/5063760 政治 3 450
## 1342 https://udn.com/news/story/6809/5063760 面對 3 450
## 1343 https://udn.com/news/story/6809/5063760 問題 3 450
## 1344 https://udn.com/news/story/6809/5063760 報導 3 450
## 1345 https://udn.com/news/story/6809/5063760 智庫 3 450
## 1346 https://udn.com/news/story/6809/5063760 進行 3 450
## 1347 https://udn.com/news/story/6809/5063760 對方 3 450
## 1348 https://udn.com/news/story/6809/5063760 顯然 3 450
## 1349 https://udn.com/news/story/6809/5123283 出售 3 319
## 1350 https://udn.com/news/story/6809/5123283 北京 3 319
## 1351 https://udn.com/news/story/6809/5123283 目標 3 319
## 1352 https://udn.com/news/story/6809/5123283 阮春福 3 319
## 1353 https://udn.com/news/story/6809/5123283 武器 3 319
## 1354 https://udn.com/news/story/6809/5123283 指出 3 319
## 1355 https://udn.com/news/story/6809/5123283 莫迪 3 319
## 1356 https://udn.com/news/story/6809/5123283 增加 3 319
## 1357 https://udn.com/news/story/6809/5217307 海軍 3 66
## 1358 https://udn.com/news/story/6809/5217399 區域 3 102
## 1359 https://udn.com/news/story/6809/5225330 反艦 3 260
## 1360 https://udn.com/news/story/6809/5225330 判斷 3 260
## 1361 https://udn.com/news/story/6809/5225330 航艦 3 260
## 1362 https://udn.com/news/story/6809/5225330 訓練 3 260
## 1363 https://udn.com/news/story/6809/5225330 專家 3 260
## 1364 https://udn.com/news/story/6809/5225330 無線電 3 260
## 1365 https://udn.com/news/story/6809/5225330 發射 3 260
## 1366 https://udn.com/news/story/6809/5225330 轟炸機 3 260
## 1367 https://udn.com/news/story/6809/5255445 大陸 3 211
## 1368 https://udn.com/news/story/6809/5255445 中國 3 211
## 1369 https://udn.com/news/story/6809/5255445 台灣 3 211
## 1370 https://udn.com/news/story/6809/5255445 所有 3 211
## 1371 https://udn.com/news/story/6809/5255445 海事 3 211
## 1372 https://udn.com/news/story/6809/5255445 海洋 3 211
## 1373 https://udn.com/news/story/6809/5255445 無害 3 211
## 1374 https://udn.com/news/story/6809/5255445 越南 3 211
## 1375 https://udn.com/news/story/6809/5255445 範圍 3 211
## 1376 https://udn.com/news/story/6809/5263091 反對 3 376
## 1377 https://udn.com/news/story/6809/5263091 日本 3 376
## 1378 https://udn.com/news/story/6809/5263091 包括 3 376
## 1379 https://udn.com/news/story/6809/5263091 去年 3 376
## 1380 https://udn.com/news/story/6809/5263091 呼籲 3 376
## 1381 https://udn.com/news/story/6809/5263091 法律條文 3 376
## 1382 https://udn.com/news/story/6809/5263091 威脅 3 376
## 1383 https://udn.com/news/story/6809/5263091 政府 3 376
## 1384 https://udn.com/news/story/6809/5263091 捍衛 3 376
## 1385 https://udn.com/news/story/6809/5263091 海域 3 376
## 1386 https://udn.com/news/story/6809/5263091 停止 3 376
## 1387 https://udn.com/news/story/6809/5263091 國際 3 376
## 1388 https://udn.com/news/story/6809/5263091 越南 3 376
## 1389 https://udn.com/news/story/6809/5263091 經濟 3 376
## 1390 https://udn.com/news/story/6809/5263091 實施 3 376
## 1391 https://udn.com/news/story/6809/5263091 緬甸 3 376
## 1392 https://udn.com/news/story/6809/5263091 避免 3 376
## 1393 https://udn.com/news/story/6809/5352633 升級 3 205
## 1394 https://udn.com/news/story/6809/5352633 東南亞 3 205
## 1395 https://udn.com/news/story/6809/5352633 南海 3 205
## 1396 https://udn.com/news/story/6809/5352633 海上 3 205
## 1397 https://udn.com/news/story/6809/5352633 認為 3 205
## 1398 https://udn.com/news/story/6809/5352633 購買 3 205
## 1399 https://udn.com/news/story/6809/5365698 牛軛 3 186
## 1400 https://udn.com/news/story/6809/5365698 附近 3 186
## 1401 https://udn.com/news/story/6809/5365698 倫沙納 3 186
## 1402 https://udn.com/news/story/6809/5365698 海域 3 186
## 1403 https://udn.com/news/story/6809/5365698 擁有 3 186
## 1404 https://udn.com/news/story/6809/5365698 據點 3 186
## 1405 https://udn.com/news/story/6809/5365698 聲稱 3 186
## 1406 https://udn.com/news/story/6809/5367370 牛軛 3 239
## 1407 https://udn.com/news/story/6809/5367370 有效 3 239
## 1408 https://udn.com/news/story/6809/5367370 爭議 3 239
## 1409 https://udn.com/news/story/6809/5367370 實現 3 239
## 1410 https://udn.com/news/story/6809/5369418 附近 3 222
## 1411 https://udn.com/news/story/6809/5369418 南沙 3 222
## 1412 https://udn.com/news/story/6809/5369418 重要 3 222
## 1413 https://udn.com/news/story/6809/5369418 海上 3 222
## 1414 https://udn.com/news/story/6809/5369418 停泊 3 222
## 1415 https://udn.com/news/story/6809/5369418 裁決 3 222
## 1416 https://udn.com/news/story/6809/5369418 群島 3 222
## 1417 https://udn.com/news/story/6809/5369418 避風 3 222
## 1418 https://udn.com/news/story/6809/5370058 北京 3 211
## 1419 https://udn.com/news/story/6809/5370058 外交 3 211
## 1420 https://udn.com/news/story/6809/5370058 回應 3 211
## 1421 https://udn.com/news/story/6809/5370058 表示 3 211
## 1422 https://udn.com/news/story/6809/5370058 南海 3 211
## 1423 https://udn.com/news/story/6809/5370058 疫情 3 211
## 1424 https://udn.com/news/story/6809/5370058 船隻 3 211
## 1425 https://udn.com/news/story/6809/5370058 菲國 3 211
## 1426 https://udn.com/news/story/6809/5376403 司令部 3 312
## 1427 https://udn.com/news/story/6809/5376403 表示 3 312
## 1428 https://udn.com/news/story/6809/5376403 梅金島號 3 312
## 1429 https://udn.com/news/story/6809/5376403 第三 3 312
## 1430 https://udn.com/news/story/6809/5376403 第五 3 312
## 1431 https://udn.com/news/story/6809/5376403 部署 3 312
## 1432 https://udn.com/news/story/6809/5376403 進入 3 312
## 1433 https://udn.com/news/story/6809/5376403 進行 3 312
## 1434 https://udn.com/news/story/6809/5376403 戰力 3 312
## 1435 https://udn.com/news/story/6809/5376403 顯示 3 312
## 1436 https://udn.com/news/story/6809/5381036 肩並肩 3 206
## 1437 https://udn.com/news/story/6809/5381036 表示 3 206
## 1438 https://udn.com/news/story/6809/5381036 恢復 3 206
## 1439 https://udn.com/news/story/6809/5381036 美菲 3 206
## 1440 https://udn.com/news/story/6809/5381036 國防 3 206
## 1441 https://udn.com/news/story/6809/5381036 奧斯汀 3 206
## 1442 https://udn.com/news/story/6809/5400212 主權 3 168
## 1443 https://udn.com/news/story/6809/5400212 杜特蒂 3 168
## 1444 https://udn.com/news/story/6809/5400212 杜特蒂說 3 168
## 1445 https://udn.com/news/story/6809/5400212 流血 3 168
## 1446 https://udn.com/news/story/6809/5400212 軍艦 3 168
## 1447 https://udn.com/news/story/6809/5400212 會派 3 168
## 1448 https://udn.com/news/story/6809/5400212 過去 3 168
## 1449 https://udn.com/news/story/6809/5400212 認為 3 168
## 1450 https://udn.com/news/story/6809/5400212 鑽油 3 168
## 1451 https://udn.com/news/story/6811/4675655 各方 3 142
## 1452 https://udn.com/news/story/6811/4675655 此次 3 142
## 1453 https://udn.com/news/story/6811/4675655 爭端 3 142
## 1454 https://udn.com/news/story/6811/4675655 表示 3 142
## 1455 https://udn.com/news/story/6811/4675655 國防部 3 142
## 1456 https://udn.com/news/story/6811/4675655 穩定 3 142
## 1457 https://udn.com/news/story/6811/4812524 人士 3 266
## 1458 https://udn.com/news/story/6811/4812524 今天 3 266
## 1459 https://udn.com/news/story/6811/4812524 反對 3 266
## 1460 https://udn.com/news/story/6811/4812524 主權 3 266
## 1461 https://udn.com/news/story/6811/4812524 北京 3 266
## 1462 https://udn.com/news/story/6811/4812524 行徑 3 266
## 1463 https://udn.com/news/story/6811/4812524 爭議 3 266
## 1464 https://udn.com/news/story/6811/4812524 航道局 3 266
## 1465 https://udn.com/news/story/6811/4812524 強調 3 266
## 1466 https://udn.com/news/story/6811/4812524 蓬佩奧 3 266
## 1467 https://udn.com/news/story/6811/4812588 研究所 3 162
## 1468 https://udn.com/news/story/6811/4812588 科技 3 162
## 1469 https://udn.com/news/story/6811/4812588 航道局 3 162
## 1470 https://udn.com/news/story/6811/4812588 清單 3 162
## 1471 https://udn.com/news/story/6811/4812588 電子科技 3 162
## 1472 https://udn.com/news/story/6813/4542826 南海 3 202
## 1473 https://udn.com/news/story/6813/4542826 調查 3 202
## 1474 https://udn.com/news/story/6813/4542826 證據 3 202
## 1475 https://udn.com/news/story/6813/4693835 中國 3 111
## 1476 https://udn.com/news/story/6813/4720296 台灣 3 133
## 1477 https://udn.com/news/story/6813/4720296 南海 3 133
## 1478 https://udn.com/news/story/6813/4720296 強化 3 133
## 1479 https://udn.com/news/story/6813/5002062 中心 3 258
## 1480 https://udn.com/news/story/6813/5002062 外界 3 258
## 1481 https://udn.com/news/story/6813/5002062 表示 3 258
## 1482 https://udn.com/news/story/6813/5002062 南海 3 258
## 1483 https://udn.com/news/story/6813/5002062 情勢 3 258
## 1484 https://udn.com/news/story/6813/5002062 擔任 3 258
## 1485 https://udn.com/news/story/6813/5002062 總統 3 258
## 1486 https://udn.com/news/story/6813/5200106 台灣 3 162
## 1487 https://udn.com/news/story/6813/5200106 自由 3 162
## 1488 https://udn.com/news/story/6813/5200106 表示 3 162
## 1489 https://udn.com/news/story/6813/5200106 促進 3 162
## 1490 https://udn.com/news/story/6813/5200106 南海 3 162
## 1491 https://udn.com/news/story/6813/5200106 美軍 3 162
## 1492 https://udn.com/news/story/6813/5200106 航行 3 162
## 1493 https://udn.com/news/story/6813/5244746 附近 3 166
## 1494 https://udn.com/news/story/6813/5244746 展開 3 166
## 1495 https://udn.com/news/story/6813/5244746 海軍 3 166
## 1496 https://udn.com/news/story/6813/5244746 航空母艦 3 166
## 1497 https://udn.com/news/story/6813/5244746 控制 3 166
## 1498 https://udn.com/news/story/7331/4308946 中共 3 73
## 1499 https://udn.com/news/story/7331/4308946 解放軍 3 73
## 1500 https://udn.com/news/story/7331/4414231 台灣 3 186
## 1501 https://udn.com/news/story/7331/4414231 航行 3 186
## 1502 https://udn.com/news/story/7331/4414231 起飛 3 186
## 1503 https://udn.com/news/story/7331/4414231 專題 3 186
## 1504 https://udn.com/news/story/7331/4414231 推特 3 186
## 1505 https://udn.com/news/story/7331/4414231 演習 3 186
## 1506 https://udn.com/news/story/7331/4414231 戰機 3 186
## 1507 https://udn.com/news/story/7331/4488979 中共 3 221
## 1508 https://udn.com/news/story/7331/4488979 中國 3 221
## 1509 https://udn.com/news/story/7331/4488979 巴士海峽 3 221
## 1510 https://udn.com/news/story/7331/4488979 疫情 3 221
## 1511 https://udn.com/news/story/7331/4503537 一批 3 190
## 1512 https://udn.com/news/story/7331/4503537 民政部 3 190
## 1513 https://udn.com/news/story/7331/4503537 名稱 3 190
## 1514 https://udn.com/news/story/7331/4503537 沙市 3 190
## 1515 https://udn.com/news/story/7331/4503537 釣魚 3 190
## 1516 https://udn.com/news/story/7331/4503537 轄下 3 190
## 1517 https://udn.com/news/story/7331/4530327 地區 3 218
## 1518 https://udn.com/news/story/7331/4530327 抗疫 3 218
## 1519 https://udn.com/news/story/7331/4530327 社會 3 218
## 1520 https://udn.com/news/story/7331/4530327 美國 3 218
## 1521 https://udn.com/news/story/7331/4557178 美國 3 148
## 1522 https://udn.com/news/story/7331/4557178 演習 3 148
## 1523 https://udn.com/news/story/7331/4605008 可能 3 268
## 1524 https://udn.com/news/story/7331/4605008 東南亞 3 268
## 1525 https://udn.com/news/story/7331/4605008 南華早報 3 268
## 1526 https://udn.com/news/story/7331/4605008 時機 3 268
## 1527 https://udn.com/news/story/7331/4605008 能力 3 268
## 1528 https://udn.com/news/story/7331/4605008 國家 3 268
## 1529 https://udn.com/news/story/7331/4605008 規劃 3 268
## 1530 https://udn.com/news/story/7331/4605008 對外 3 268
## 1531 https://udn.com/news/story/7331/4681864 力量 3 231
## 1532 https://udn.com/news/story/7331/4681864 王亞 3 231
## 1533 https://udn.com/news/story/7331/4681864 作戰 3 231
## 1534 https://udn.com/news/story/7331/4681864 武力 3 231
## 1535 https://udn.com/news/story/7331/4681864 重返 3 231
## 1536 https://udn.com/news/story/7331/4681864 航艦 3 231
## 1537 https://udn.com/news/story/7331/4681864 基地 3 231
## 1538 https://udn.com/news/story/7331/4681864 部署 3 231
## 1539 https://udn.com/news/story/7331/4697199 西沙 3 274
## 1540 https://udn.com/news/story/7331/4697199 注定 3 274
## 1541 https://udn.com/news/story/7331/4697199 軍隊 3 274
## 1542 https://udn.com/news/story/7331/4697199 徒勞無功 3 274
## 1543 https://udn.com/news/story/7331/4697199 破壞 3 274
## 1544 https://udn.com/news/story/7331/4697199 強調 3 274
## 1545 https://udn.com/news/story/7331/4697199 群島 3 274
## 1546 https://udn.com/news/story/7331/4697199 演習 3 274
## 1547 https://udn.com/news/story/7331/4697199 導致 3 274
## 1548 https://udn.com/news/story/7331/4699962 表示 3 129
## 1549 https://udn.com/news/story/7331/4699962 美方 3 129
## 1550 https://udn.com/news/story/7331/4699962 問題 3 129
## 1551 https://udn.com/news/story/7331/4699962 國家 3 129
## 1552 https://udn.com/news/story/7331/4699962 發言人 3 129
## 1553 https://udn.com/news/story/7331/4699962 駐美 3 129
## 1554 https://udn.com/news/story/7331/4702018 堅決 3 181
## 1555 https://udn.com/news/story/7331/4702018 聲明 3 181
## 1556 https://udn.com/news/story/7331/4703971 大陸 3 200
## 1557 https://udn.com/news/story/7331/4703971 目標 3 200
## 1558 https://udn.com/news/story/7331/4703971 地面 3 200
## 1559 https://udn.com/news/story/7331/4703971 系統 3 200
## 1560 https://udn.com/news/story/7331/4703971 派出 3 200
## 1561 https://udn.com/news/story/7331/4703971 進入 3 200
## 1562 https://udn.com/news/story/7331/4703971 進行 3 200
## 1563 https://udn.com/news/story/7331/4703971 雷達 3 200
## 1564 https://udn.com/news/story/7331/4703971 廣東省 3 200
## 1565 https://udn.com/news/story/7331/4703971 環球網 3 200
## 1566 https://udn.com/news/story/7331/4704552 表示 3 216
## 1567 https://udn.com/news/story/7331/4704552 問題 3 216
## 1568 https://udn.com/news/story/7331/4704552 穩定 3 216
## 1569 https://udn.com/news/story/7331/4713477 中美 3 266
## 1570 https://udn.com/news/story/7331/4713477 包括 3 266
## 1571 https://udn.com/news/story/7331/4713477 至少 3 266
## 1572 https://udn.com/news/story/7331/4713477 重型 3 266
## 1573 https://udn.com/news/story/7331/4713477 展開 3 266
## 1574 https://udn.com/news/story/7331/4713477 機場 3 266
## 1575 https://udn.com/news/story/7331/4713478 中交建 3 208
## 1576 https://udn.com/news/story/7331/4713855 分析 3 189
## 1577 https://udn.com/news/story/7331/4713855 可能 3 189
## 1578 https://udn.com/news/story/7331/4713855 軍事 3 189
## 1579 https://udn.com/news/story/7331/4724139 上空 3 214
## 1580 https://udn.com/news/story/7331/4724139 大陸 3 214
## 1581 https://udn.com/news/story/7331/4724139 出現 3 214
## 1582 https://udn.com/news/story/7331/4724139 計畫 3 214
## 1583 https://udn.com/news/story/7331/4724139 軍事 3 214
## 1584 https://udn.com/news/story/7331/4724139 陸軍 3 214
## 1585 https://udn.com/news/story/7331/4724139 進入 3 214
## 1586 https://udn.com/news/story/7331/4724139 進行 3 214
## 1587 https://udn.com/news/story/7331/4724139 黃海 3 214
## 1588 https://udn.com/news/story/7331/4724139 感知 3 214
## 1589 https://udn.com/news/story/7331/4724139 態勢 3 214
## 1590 https://udn.com/news/story/7331/4724139 戰略 3 214
## 1591 https://udn.com/news/story/7331/4727917 公告 3 142
## 1592 https://udn.com/news/story/7331/4727917 出海 3 142
## 1593 https://udn.com/news/story/7331/4727917 當天 3 142
## 1594 https://udn.com/news/story/7331/4727917 雷州半島 3 142
## 1595 https://udn.com/news/story/7331/4731672 沿海 3 186
## 1596 https://udn.com/news/story/7331/4731672 表示 3 186
## 1597 https://udn.com/news/story/7331/4731672 海里 3 186
## 1598 https://udn.com/news/story/7331/4731672 進入 3 186
## 1599 https://udn.com/news/story/7331/4731750 一架 3 279
## 1600 https://udn.com/news/story/7331/4731750 公約 3 279
## 1601 https://udn.com/news/story/7331/4731750 主張 3 279
## 1602 https://udn.com/news/story/7331/4731750 加油機 3 279
## 1603 https://udn.com/news/story/7331/4731750 平台 3 279
## 1604 https://udn.com/news/story/7331/4731750 打靶 3 279
## 1605 https://udn.com/news/story/7331/4731750 並稱 3 279
## 1606 https://udn.com/news/story/7331/4731750 承認 3 279
## 1607 https://udn.com/news/story/7331/4731750 挑釁 3 279
## 1608 https://udn.com/news/story/7331/4731750 飛往 3 279
## 1609 https://udn.com/news/story/7331/4731750 國家 3 279
## 1610 https://udn.com/news/story/7331/4731750 基線 3 279
## 1611 https://udn.com/news/story/7331/4731750 報導 3 279
## 1612 https://udn.com/news/story/7331/4731750 提交 3 279
## 1613 https://udn.com/news/story/7331/4731750 實彈 3 279
## 1614 https://udn.com/news/story/7331/4737312 地區 3 291
## 1615 https://udn.com/news/story/7331/4737312 行為 3 291
## 1616 https://udn.com/news/story/7331/4737312 東協 3 291
## 1617 https://udn.com/news/story/7331/4737312 美方 3 291
## 1618 https://udn.com/news/story/7331/4737312 龐培 3 291
## 1619 https://udn.com/news/story/7331/4742714 三重 3 396
## 1620 https://udn.com/news/story/7331/4742714 川普 3 396
## 1621 https://udn.com/news/story/7331/4742714 中方 3 396
## 1622 https://udn.com/news/story/7331/4742714 打壓 3 396
## 1623 https://udn.com/news/story/7331/4742714 企圖 3 396
## 1624 https://udn.com/news/story/7331/4742714 危機 3 396
## 1625 https://udn.com/news/story/7331/4742714 多次 3 396
## 1626 https://udn.com/news/story/7331/4742714 行為 3 396
## 1627 https://udn.com/news/story/7331/4742714 汪文斌 3 396
## 1628 https://udn.com/news/story/7331/4742714 指出 3 396
## 1629 https://udn.com/news/story/7331/4742714 政府 3 396
## 1630 https://udn.com/news/story/7331/4742714 海上 3 396
## 1631 https://udn.com/news/story/7331/4742714 偵察 3 396
## 1632 https://udn.com/news/story/7331/4742714 陶文釗 3 396
## 1633 https://udn.com/news/story/7331/4742714 報導 3 396
## 1634 https://udn.com/news/story/7331/4742714 距離 3 396
## 1635 https://udn.com/news/story/7331/4742714 穩定 3 396
## 1636 https://udn.com/news/story/7331/4785688 大陸 3 121
## 1637 https://udn.com/news/story/7331/4785688 央視 3 121
## 1638 https://udn.com/news/story/7331/4785688 制裁 3 121
## 1639 https://udn.com/news/story/7331/4785688 南海 3 121
## 1640 https://udn.com/news/story/7331/4803877 南海 3 157
## 1641 https://udn.com/news/story/7331/4803877 軍演 3 157
## 1642 https://udn.com/news/story/7331/4803877 時至 3 157
## 1643 https://udn.com/news/story/7331/4803877 渤海 3 157
## 1644 https://udn.com/news/story/7331/4803877 實彈射擊 3 157
## 1645 https://udn.com/news/story/7331/4813671 中共 3 140
## 1646 https://udn.com/news/story/7331/4813671 海域 3 140
## 1647 https://udn.com/news/story/7331/4813671 消息人士 3 140
## 1648 https://udn.com/news/story/7331/4813671 航母 3 140
## 1649 https://udn.com/news/story/7331/4813671 發射 3 140
## 1650 https://udn.com/news/story/7331/4813671 解放軍 3 140
## 1651 https://udn.com/news/story/7331/4813671 試射 3 140
## 1652 https://udn.com/news/story/7331/4813671 關島 3 140
## 1653 https://udn.com/news/story/7331/4814984 中方 3 91
## 1654 https://udn.com/news/story/7331/4814984 本國 3 91
## 1655 https://udn.com/news/story/7331/4814984 南海 3 91
## 1656 https://udn.com/news/story/7331/4816369 行動 3 253
## 1657 https://udn.com/news/story/7331/4816369 底線 3 253
## 1658 https://udn.com/news/story/7331/4816369 保持 3 253
## 1659 https://udn.com/news/story/7331/4816369 解放軍 3 253
## 1660 https://udn.com/news/story/7331/4816369 導彈 3 253
## 1661 https://udn.com/news/story/7331/4817559 立堅 3 97
## 1662 https://udn.com/news/story/7331/4817559 和平 3 97
## 1663 https://udn.com/news/story/7331/4817559 表示 3 97
## 1664 https://udn.com/news/story/7331/4817559 美國 3 97
## 1665 https://udn.com/news/story/7331/4832251 問題 3 233
## 1666 https://udn.com/news/story/7331/4832768 王毅 3 111
## 1667 https://udn.com/news/story/7331/4832768 地區 3 111
## 1668 https://udn.com/news/story/7331/4832768 穩定 3 111
## 1669 https://udn.com/news/story/7331/4834648 上午 3 349
## 1670 https://udn.com/news/story/7331/4834648 不顧 3 349
## 1671 https://udn.com/news/story/7331/4834648 信號 3 349
## 1672 https://udn.com/news/story/7331/4834648 美方 3 349
## 1673 https://udn.com/news/story/7331/4834648 軍機 3 349
## 1674 https://udn.com/news/story/7331/4834648 採用 3 349
## 1675 https://udn.com/news/story/7331/4834648 掩護 3 349
## 1676 https://udn.com/news/story/7331/4849422 不是 3 272
## 1677 https://udn.com/news/story/7331/4849422 不斷 3 272
## 1678 https://udn.com/news/story/7331/4849422 正在 3 272
## 1679 https://udn.com/news/story/7331/4849422 爭議 3 272
## 1680 https://udn.com/news/story/7331/4849422 最大 3 272
## 1681 https://udn.com/news/story/7331/4849422 戰略 3 272
## 1682 https://udn.com/news/story/7331/4866729 一架 3 103
## 1683 https://udn.com/news/story/7331/4866729 平台 3 103
## 1684 https://udn.com/news/story/7331/4866729 空地 3 103
## 1685 https://udn.com/news/story/7331/4866729 美軍 3 103
## 1686 https://udn.com/news/story/7331/4866729 計畫 3 103
## 1687 https://udn.com/news/story/7331/4866729 感知 3 103
## 1688 https://udn.com/news/story/7331/4866729 態勢 3 103
## 1689 https://udn.com/news/story/7331/4866729 監視 3 103
## 1690 https://udn.com/news/story/7331/4866729 戰略 3 103
## 1691 https://udn.com/news/story/7331/4883732 前往 3 121
## 1692 https://udn.com/news/story/7331/4883732 時許 3 121
## 1693 https://udn.com/news/story/7331/4895326 各類 3 232
## 1694 https://udn.com/news/story/7331/4895326 地區 3 232
## 1695 https://udn.com/news/story/7331/4895326 服務 3 232
## 1696 https://udn.com/news/story/7331/4895326 南沙 3 232
## 1697 https://udn.com/news/story/7331/4895326 國家 3 232
## 1698 https://udn.com/news/story/7331/4895326 國際 3 232
## 1699 https://udn.com/news/story/7331/4895326 部署 3 232
## 1700 https://udn.com/news/story/7331/4895326 最大 3 232
## 1701 https://udn.com/news/story/7331/4895326 開展 3 232
## 1702 https://udn.com/news/story/7331/4895326 維護 3 232
## 1703 https://udn.com/news/story/7331/4899934 一艘 3 164
## 1704 https://udn.com/news/story/7331/4899934 下水 3 164
## 1705 https://udn.com/news/story/7331/4899934 巡航 3 164
## 1706 https://udn.com/news/story/7331/4899934 能力 3 164
## 1707 https://udn.com/news/story/7331/4899934 排水量 3 164
## 1708 https://udn.com/news/story/7331/4899934 報導 3 164
## 1709 https://udn.com/news/story/7331/4899934 萬噸級 3 164
## 1710 https://udn.com/news/story/7331/4899934 廣東 3 164
## 1711 https://udn.com/news/story/7331/4922504 大陸 3 262
## 1712 https://udn.com/news/story/7331/4922504 安全 3 262
## 1713 https://udn.com/news/story/7331/4922504 行為 3 262
## 1714 https://udn.com/news/story/7331/4922504 表示 3 262
## 1715 https://udn.com/news/story/7331/4922504 美方 3 262
## 1716 https://udn.com/news/story/7331/4922504 海上 3 262
## 1717 https://udn.com/news/story/7331/4922504 規則 3 262
## 1718 https://udn.com/news/story/7331/4926456 王毅 3 128
## 1719 https://udn.com/news/story/7331/4926456 問題 3 128
## 1720 https://udn.com/news/story/7331/5039328 中央 3 198
## 1721 https://udn.com/news/story/7331/5039328 中共 3 198
## 1722 https://udn.com/news/story/7331/5039328 文章 3 198
## 1723 https://udn.com/news/story/7331/5039328 南海 3 198
## 1724 https://udn.com/news/story/7331/5039328 計劃 3 198
## 1725 https://udn.com/news/story/7331/5039328 薛祥 3 198
## 1726 https://udn.com/news/story/7331/5220062 心理 3 90
## 1727 https://udn.com/news/story/7331/5220062 團隊 3 90
## 1728 https://udn.com/news/story/7331/5235138 大陸 3 99
## 1729 https://udn.com/news/story/7331/5235138 中國 3 99
## 1730 https://udn.com/news/story/7331/5235138 田軍里 3 99
## 1731 https://udn.com/news/story/7331/5235138 和平 3 99
## 1732 https://udn.com/news/story/7331/5235138 南海 3 99
## 1733 https://udn.com/news/story/7331/5235138 南部 3 99
## 1734 https://udn.com/news/story/7331/5285610 大陸 3 128
## 1735 https://udn.com/news/story/7331/5285610 法國 3 128
## 1736 https://udn.com/news/story/7331/5287493 方式 3 428
## 1737 https://udn.com/news/story/7331/5287493 沒有 3 428
## 1738 https://udn.com/news/story/7331/5287493 爭端 3 428
## 1739 https://udn.com/news/story/7331/5287493 爭議 3 428
## 1740 https://udn.com/news/story/7331/5287493 高科技 3 428
## 1741 https://udn.com/news/story/7331/5287493 做法 3 428
## 1742 https://udn.com/news/story/7331/5287493 應該 3 428
## 1743 https://udn.com/news/story/7331/5294249 主張 3 279
## 1744 https://udn.com/news/story/7331/5294249 主權 3 279
## 1745 https://udn.com/news/story/7331/5294249 法國 3 279
## 1746 https://udn.com/news/story/7331/5294249 宣布 3 279
## 1747 https://udn.com/news/story/7331/5294249 英國 3 279
## 1748 https://udn.com/news/story/7331/5294249 配合 3 279
## 1749 https://udn.com/news/story/7331/5294249 問題 3 279
## 1750 https://udn.com/news/story/7331/5294249 國際 3 279
## 1751 https://udn.com/news/story/7331/5301066 西方 3 270
## 1752 https://udn.com/news/story/7331/5301066 制度 3 270
## 1753 https://udn.com/news/story/7331/5301066 是否 3 270
## 1754 https://udn.com/news/story/7331/5301066 記者 3 270
## 1755 https://udn.com/news/story/7331/5301066 記者會 3 270
## 1756 https://udn.com/news/story/7331/5301066 新疆 3 270
## 1757 https://udn.com/news/story/7331/5301066 穩定 3 270
## 1758 https://udn.com/news/story/7331/5309836 軍事 3 100
## 1759 https://udn.com/news/story/7331/5309836 訓練 3 100
## 1760 https://udn.com/news/story/7331/5309836 範圍 3 100
## 1761 https://udn.com/news/story/7331/5358554 島礁 3 86
## 1762 https://udn.com/news/story/7331/5359369 表示 3 121
## 1763 https://udn.com/news/story/7331/5359369 國防部 3 121
## 1764 https://udn.com/news/story/7331/5359369 報導 3 121
## 1765 https://udn.com/news/story/7331/5359369 護衛艦 3 121
## 1766 https://udn.com/news/story/7331/5359369 觀察者 3 121
## 1767 https://udn.com/news/story/7331/5365152 台灣 3 217
## 1768 https://udn.com/news/story/7331/5365152 打擊 3 217
## 1769 https://udn.com/news/story/7331/5365152 近期 3 217
## 1770 https://udn.com/news/story/7331/5365152 海域 3 217
## 1771 https://udn.com/news/story/7331/5365152 智庫 3 217
## 1772 https://udn.com/news/story/7331/5365152 進入 3 217
## 1773 https://udn.com/news/story/7331/5365152 驅逐艦 3 217
## 1774 https://udn.com/news/story/7331/5388998 附近 3 126
## 1775 https://udn.com/news/story/7331/5388998 南海艦隊 3 126
## 1776 https://udn.com/news/story/7331/5388998 持續 3 126
## 1777 https://udn.com/news/story/7331/5388998 進行 3 126
## 1778 https://udn.com/news/story/7331/5388998 廣東 3 126
## 1779 https://udn.com/news/story/7331/5393116 左右 3 100
## 1780 https://udn.com/news/story/7331/5393116 抵近 3 100
## 1781 https://udn.com/news/story/7331/5393116 海域 3 100
## 1782 https://udn.com/news/story/7331/5393116 群島 3 100
## 1783 https://udn.com/news/story/7331/5401625 行為 3 202
## 1784 https://udn.com/news/story/7331/5401625 吳士 3 202
## 1785 https://udn.com/news/story/7331/5401625 應該 3 202
## 1786 https://udn.com/news/story/7331/5404677 大陸 3 102
## 1787 https://udn.com/news/story/7331/5404677 計畫 3 102
## 1788 https://udn.com/news/story/7331/5404677 偵察 3 102
## 1789 https://udn.com/news/story/7331/5404677 偵察機 3 102
## 1790 https://udn.com/news/story/7331/5404677 感知 3 102
## 1791 https://udn.com/news/story/7331/5404677 態勢 3 102
## 1792 https://udn.com/news/story/7331/5404677 戰略 3 102
## 1793 https://udn.com/news/story/7332/4388480 一家 3 184
## 1794 https://udn.com/news/story/7332/4388480 四口 3 184
## 1795 https://udn.com/news/story/7332/4591030 表示 3 126
## 1796 https://udn.com/news/story/7332/4591030 冠狀病毒 3 126
## 1797 https://udn.com/news/story/7332/4591030 樣本 3 126
## 1798 https://udn.com/news/story/7332/4876640 公眾號 3 280
## 1799 https://udn.com/news/story/7332/4876640 石油 3 280
## 1800 https://udn.com/news/story/7332/4876640 油氣 3 280
## 1801 https://udn.com/news/story/7332/4876640 原油 3 280
## 1802 https://udn.com/news/story/7332/4876640 海洋 3 280
## 1803 https://udn.com/news/story/7332/4876640 產量 3 280
## 1804 https://udn.com/news/story/7332/4876640 微信 3 280
## 1805 https://udn.com/news/story/7332/4876640 模式 3 280
## 1806 https://udn.com/news/story/7333/4665178 中共 3 77
## 1807 https://udn.com/news/story/7333/4665178 海域 3 77
## 1808 https://udn.com/news/story/7333/4665178 群島 3 77
## 1809 https://udn.com/news/story/7333/4704558 制裁 3 145
## 1810 https://udn.com/news/story/7333/4704558 表示 3 145
## 1811 https://udn.com/news/story/7333/4704558 國家 3 145
## 1812 https://udn.com/news/story/7333/4704558 穩定 3 145
## 1813 https://udn.com/news/story/7333/4813542 中國 3 97
## 1814 https://udn.com/news/story/7333/4813542 和平 3 97
## 1815 https://udn.com/news/story/7333/4813542 穩定 3 97
## 1816 https://udn.com/news/story/7333/5401465 外交部 3 154
## 1817 https://udn.com/news/story/7333/5401465 因素 3 154
## 1818 https://udn.com/news/story/7333/5401465 地區 3 154
## 1819 https://udn.com/news/story/7333/5401465 地緣 3 154
## 1820 https://udn.com/news/story/7333/5401465 域外 3 154
## 1821 https://udn.com/news/story/7333/5401465 勢力 3 154
## 1822 https://udn.com/news/story/120675/4281503 入院 2 264
## 1823 https://udn.com/news/story/120675/4281503 大多數 2 264
## 1824 https://udn.com/news/story/120675/4281503 以來 2 264
## 1825 https://udn.com/news/story/120675/4281503 出院 2 264
## 1826 https://udn.com/news/story/120675/4281503 出現 2 264
## 1827 https://udn.com/news/story/120675/4281503 央視 2 264
## 1828 https://udn.com/news/story/120675/4281503 呼吸系統 2 264
## 1829 https://udn.com/news/story/120675/4281503 官方 2 264
## 1830 https://udn.com/news/story/120675/4281503 治療 2 264
## 1831 https://udn.com/news/story/120675/4281503 冠狀病毒 2 264
## 1832 https://udn.com/news/story/120675/4281503 南海 2 264
## 1833 https://udn.com/news/story/120675/4281503 客戶端 2 264
## 1834 https://udn.com/news/story/120675/4281503 建議 2 264
## 1835 https://udn.com/news/story/120675/4281503 重症 2 264
## 1836 https://udn.com/news/story/120675/4281503 風險 2 264
## 1837 https://udn.com/news/story/120675/4281503 病毒性 2 264
## 1838 https://udn.com/news/story/120675/4281503 患病 2 264
## 1839 https://udn.com/news/story/120675/4281503 採取 2 264
## 1840 https://udn.com/news/story/120675/4281503 感染 2 264
## 1841 https://udn.com/news/story/120675/4281503 新型 2 264
## 1842 https://udn.com/news/story/120675/4281503 新聞 2 264
## 1843 https://udn.com/news/story/120675/4281503 穩定 2 264
## 1844 https://udn.com/news/story/120675/4281503 證據 2 264
## 1845 https://udn.com/news/story/121687/5199268 力量 2 257
## 1846 https://udn.com/news/story/121687/5199268 多型 2 257
## 1847 https://udn.com/news/story/121687/5199268 表示 2 257
## 1848 https://udn.com/news/story/121687/5199268 近日 2 257
## 1849 https://udn.com/news/story/121687/5199268 俄媒 2 257
## 1850 https://udn.com/news/story/121687/5199268 俄羅斯 2 257
## 1851 https://udn.com/news/story/121687/5199268 建設 2 257
## 1852 https://udn.com/news/story/121687/5199268 美海軍 2 257
## 1853 https://udn.com/news/story/121687/5199268 美國 2 257
## 1854 https://udn.com/news/story/121687/5199268 飛行 2 257
## 1855 https://udn.com/news/story/121687/5199268 飛行員 2 257
## 1856 https://udn.com/news/story/121687/5199268 海上 2 257
## 1857 https://udn.com/news/story/121687/5199268 航行 2 257
## 1858 https://udn.com/news/story/121687/5199268 國強 2 257
## 1859 https://udn.com/news/story/121687/5199268 晝夜 2 257
## 1860 https://udn.com/news/story/121687/5199268 進入 2 257
## 1861 https://udn.com/news/story/121687/5199268 進行 2 257
## 1862 https://udn.com/news/story/121687/5199268 確認 2 257
## 1863 https://udn.com/news/story/121687/5199268 戰機 2 257
## 1864 https://udn.com/news/story/121687/5199268 環球網 2 257
## 1865 https://udn.com/news/story/121687/5199268 羅斯福 2 257
## 1866 https://udn.com/news/story/121687/5212213 上任 2 295
## 1867 https://udn.com/news/story/121687/5212213 分別 2 295
## 1868 https://udn.com/news/story/121687/5212213 日益 2 295
## 1869 https://udn.com/news/story/121687/5212213 主權 2 295
## 1870 https://udn.com/news/story/121687/5212213 外交部長 2 295
## 1871 https://udn.com/news/story/121687/5212213 未來 2 295
## 1872 https://udn.com/news/story/121687/5212213 全球 2 295
## 1873 https://udn.com/news/story/121687/5212213 共同 2 295
## 1874 https://udn.com/news/story/121687/5212213 共同利益 2 295
## 1875 https://udn.com/news/story/121687/5212213 同意 2 295
## 1876 https://udn.com/news/story/121687/5212213 地區 2 295
## 1877 https://udn.com/news/story/121687/5212213 拒絕 2 295
## 1878 https://udn.com/news/story/121687/5212213 南海 2 295
## 1879 https://udn.com/news/story/121687/5212213 政府 2 295
## 1880 https://udn.com/news/story/121687/5212213 重建 2 295
## 1881 https://udn.com/news/story/121687/5212213 重要 2 295
## 1882 https://udn.com/news/story/121687/5212213 重要性 2 295
## 1883 https://udn.com/news/story/121687/5212213 記者 2 295
## 1884 https://udn.com/news/story/121687/5212213 記者會 2 295
## 1885 https://udn.com/news/story/121687/5212213 啟動 2 295
## 1886 https://udn.com/news/story/121687/5212213 國家 2 295
## 1887 https://udn.com/news/story/121687/5212213 國務卿 2 295
## 1888 https://udn.com/news/story/121687/5212213 國務院 2 295
## 1889 https://udn.com/news/story/121687/5212213 國會 2 295
## 1890 https://udn.com/news/story/121687/5212213 將形塑 2 295
## 1891 https://udn.com/news/story/121687/5212213 這段 2 295
## 1892 https://udn.com/news/story/121687/5212213 普萊斯 2 295
## 1893 https://udn.com/news/story/121687/5212213 無疑 2 295
## 1894 https://udn.com/news/story/121687/5212213 菲律賓 2 295
## 1895 https://udn.com/news/story/121687/5212213 樣貌 2 295
## 1896 https://udn.com/news/story/121687/5212213 歐亞 2 295
## 1897 https://udn.com/news/story/121687/5212213 聯盟 2 295
## 1898 https://udn.com/news/story/121687/5212213 聲索 2 295
## 1899 https://udn.com/news/story/121687/5212213 競爭 2 295
## 1900 https://udn.com/news/story/121687/5212213 顧問 2 295
## 1901 https://udn.com/news/story/121687/5215820 太平洋 2 503
## 1902 https://udn.com/news/story/121687/5215820 太平洋地區 2 503
## 1903 https://udn.com/news/story/121687/5215820 日本 2 503
## 1904 https://udn.com/news/story/121687/5215820 包括 2 503
## 1905 https://udn.com/news/story/121687/5215820 台海 2 503
## 1906 https://udn.com/news/story/121687/5215820 外交 2 503
## 1907 https://udn.com/news/story/121687/5215820 立場 2 503
## 1908 https://udn.com/news/story/121687/5215820 任務 2 503
## 1909 https://udn.com/news/story/121687/5215820 共同 2 503
## 1910 https://udn.com/news/story/121687/5215820 印度 2 503
## 1911 https://udn.com/news/story/121687/5215820 地區 2 503
## 1912 https://udn.com/news/story/121687/5215820 多架次 2 503
## 1913 https://udn.com/news/story/121687/5215820 自我 2 503
## 1914 https://udn.com/news/story/121687/5215820 行經 2 503
## 1915 https://udn.com/news/story/121687/5215820 巡邏 2 503
## 1916 https://udn.com/news/story/121687/5215820 改變 2 503
## 1917 https://udn.com/news/story/121687/5215820 林肯 2 503
## 1918 https://udn.com/news/story/121687/5215820 表示 2 503
## 1919 https://udn.com/news/story/121687/5215820 威脅 2 503
## 1920 https://udn.com/news/story/121687/5215820 指出 2 503
## 1921 https://udn.com/news/story/121687/5215820 派出 2 503
## 1922 https://udn.com/news/story/121687/5215820 美中 2 503
## 1923 https://udn.com/news/story/121687/5215820 美方 2 503
## 1924 https://udn.com/news/story/121687/5215820 美軍 2 503
## 1925 https://udn.com/news/story/121687/5215820 軍事 2 503
## 1926 https://udn.com/news/story/121687/5215820 軍機 2 503
## 1927 https://udn.com/news/story/121687/5215820 軍艦 2 503
## 1928 https://udn.com/news/story/121687/5215820 重申 2 503
## 1929 https://udn.com/news/story/121687/5215820 面對 2 503
## 1930 https://udn.com/news/story/121687/5215820 能力 2 503
## 1931 https://udn.com/news/story/121687/5215820 航艦 2 503
## 1932 https://udn.com/news/story/121687/5215820 區域 2 503
## 1933 https://udn.com/news/story/121687/5215820 國務卿 2 503
## 1934 https://udn.com/news/story/121687/5215820 執行 2 503
## 1935 https://udn.com/news/story/121687/5215820 執政 2 503
## 1936 https://udn.com/news/story/121687/5215820 將派 2 503
## 1937 https://udn.com/news/story/121687/5215820 條約 2 503
## 1938 https://udn.com/news/story/121687/5215820 釣魚 2 503
## 1939 https://udn.com/news/story/121687/5215820 陸辛 2 503
## 1940 https://udn.com/news/story/121687/5215820 舒斯特 2 503
## 1941 https://udn.com/news/story/121687/5215820 意圖 2 503
## 1942 https://udn.com/news/story/121687/5215820 新政府 2 503
## 1943 https://udn.com/news/story/121687/5215820 號航艦 2 503
## 1944 https://udn.com/news/story/121687/5215820 演習 2 503
## 1945 https://udn.com/news/story/121687/5215820 確保 2 503
## 1946 https://udn.com/news/story/121687/5215820 聯盟 2 503
## 1947 https://udn.com/news/story/121687/5215820 聽證會 2 503
## 1948 https://udn.com/news/story/121687/5215820 顯示 2 503
## 1949 https://udn.com/news/story/122051/5368627 大國 2 239
## 1950 https://udn.com/news/story/122051/5368627 中方 2 239
## 1951 https://udn.com/news/story/122051/5368627 中美 2 239
## 1952 https://udn.com/news/story/122051/5368627 之爭 2 239
## 1953 https://udn.com/news/story/122051/5368627 之際 2 239
## 1954 https://udn.com/news/story/122051/5368627 升級 2 239
## 1955 https://udn.com/news/story/122051/5368627 日本 2 239
## 1956 https://udn.com/news/story/122051/5368627 加強 2 239
## 1957 https://udn.com/news/story/122051/5368627 加劇 2 239
## 1958 https://udn.com/news/story/122051/5368627 北約 2 239
## 1959 https://udn.com/news/story/122051/5368627 地區 2 239
## 1960 https://udn.com/news/story/122051/5368627 自衛隊 2 239
## 1961 https://udn.com/news/story/122051/5368627 防衛 2 239
## 1962 https://udn.com/news/story/122051/5368627 亞太 2 239
## 1963 https://udn.com/news/story/122051/5368627 近期 2 239
## 1964 https://udn.com/news/story/122051/5368627 美國 2 239
## 1965 https://udn.com/news/story/122051/5368627 面對 2 239
## 1966 https://udn.com/news/story/122051/5368627 航母 2 239
## 1967 https://udn.com/news/story/122051/5368627 動向 2 239
## 1968 https://udn.com/news/story/122051/5368627 陸續 2 239
## 1969 https://udn.com/news/story/122051/5368627 最新 2 239
## 1970 https://udn.com/news/story/122051/5368627 發現 2 239
## 1971 https://udn.com/news/story/122051/5368627 進行 2 239
## 1972 https://udn.com/news/story/122051/5368627 勢力 2 239
## 1973 https://udn.com/news/story/122051/5368627 緊張局勢 2 239
## 1974 https://udn.com/news/story/122051/5368627 增添 2 239
## 1975 https://udn.com/news/story/122051/5368627 導致 2 239
## 1976 https://udn.com/news/story/122051/5368627 戰鬥 2 239
## 1977 https://udn.com/news/story/122051/5368627 羅斯福 2 239
## 1978 https://udn.com/news/story/122051/5368627 驅逐艦 2 239
## 1979 https://udn.com/news/story/122051/5369349 任務 2 103
## 1980 https://udn.com/news/story/122051/5369349 例行 2 103
## 1981 https://udn.com/news/story/122051/5369349 航空母艦 2 103
## 1982 https://udn.com/news/story/122051/5369349 部署 2 103
## 1983 https://udn.com/news/story/122051/5369349 報導 2 103
## 1984 https://udn.com/news/story/122051/5369349 進行 2 103
## 1985 https://udn.com/news/story/122051/5369349 艦隊 2 103
## 1986 https://udn.com/news/story/122051/5369962 大型 2 261
## 1987 https://udn.com/news/story/122051/5369962 山東 2 261
## 1988 https://udn.com/news/story/122051/5369962 中共 2 261
## 1989 https://udn.com/news/story/122051/5369962 之際 2 261
## 1990 https://udn.com/news/story/122051/5369962 日本 2 261
## 1991 https://udn.com/news/story/122051/5369962 包括 2 261
## 1992 https://udn.com/news/story/122051/5369962 作戰 2 261
## 1993 https://udn.com/news/story/122051/5369962 指出 2 261
## 1994 https://udn.com/news/story/122051/5369962 指揮官 2 261
## 1995 https://udn.com/news/story/122051/5369962 穿越 2 261
## 1996 https://udn.com/news/story/122051/5369962 韋瑞西 2 261
## 1997 https://udn.com/news/story/122051/5369962 飛彈 2 261
## 1998 https://udn.com/news/story/122051/5369962 海上 2 261
## 1999 https://udn.com/news/story/122051/5369962 海域 2 261
## 2000 https://udn.com/news/story/122051/5369962 航行 2 261
## 2001 https://udn.com/news/story/122051/5369962 組織 2 261
## 2002 https://udn.com/news/story/122051/5369962 這是 2 261
## 2003 https://udn.com/news/story/122051/5369962 部署 2 261
## 2004 https://udn.com/news/story/122051/5369962 期間 2 261
## 2005 https://udn.com/news/story/122051/5369962 進入 2 261
## 2006 https://udn.com/news/story/122051/5369962 演習 2 261
## 2007 https://udn.com/news/story/122051/5369962 導向飛彈 2 261
## 2008 https://udn.com/news/story/122051/5369962 繼續 2 261
## 2009 https://udn.com/news/story/122051/5369962 艦隊 2 261
## 2010 https://udn.com/news/story/12586/4730402 不要 2 375
## 2011 https://udn.com/news/story/12586/4730402 中方 2 375
## 2012 https://udn.com/news/story/12586/4730402 中央社 2 375
## 2013 https://udn.com/news/story/12586/4730402 分析 2 375
## 2014 https://udn.com/news/story/12586/4730402 反制 2 375
## 2015 https://udn.com/news/story/12586/4730402 支持 2 375
## 2016 https://udn.com/news/story/12586/4730402 台灣 2 375
## 2017 https://udn.com/news/story/12586/4730402 打壓 2 375
## 2018 https://udn.com/news/story/12586/4730402 全球 2 375
## 2019 https://udn.com/news/story/12586/4730402 危機 2 375
## 2020 https://udn.com/news/story/12586/4730402 走向 2 375
## 2021 https://udn.com/news/story/12586/4730402 美的 2 375
## 2022 https://udn.com/news/story/12586/4730402 軍艦 2 375
## 2023 https://udn.com/news/story/12586/4730402 針對 2 375
## 2024 https://udn.com/news/story/12586/4730402 國家 2 375
## 2025 https://udn.com/news/story/12586/4730402 接觸 2 375
## 2026 https://udn.com/news/story/12586/4730402 教授 2 375
## 2027 https://udn.com/news/story/12586/4730402 這是 2 375
## 2028 https://udn.com/news/story/12586/4730402 發生 2 375
## 2029 https://udn.com/news/story/12586/4730402 過去 2 375
## 2030 https://udn.com/news/story/12586/4730402 達到 2 375
## 2031 https://udn.com/news/story/12586/4730402 算計 2 375
## 2032 https://udn.com/news/story/12586/4730402 精心 2 375
## 2033 https://udn.com/news/story/12586/4730402 認為 2 375
## 2034 https://udn.com/news/story/12586/4730402 學者 2 375
## 2035 https://udn.com/news/story/12586/4730402 舉動 2 375
## 2036 https://udn.com/news/story/12586/4730402 邏輯 2 375
## 2037 https://udn.com/news/story/12586/4732749 內容 2 339
## 2038 https://udn.com/news/story/12586/4732749 巴士海峽 2 339
## 2039 https://udn.com/news/story/12586/4732749 方面 2 339
## 2040 https://udn.com/news/story/12586/4732749 日起 2 339
## 2041 https://udn.com/news/story/12586/4732749 水域 2 339
## 2042 https://udn.com/news/story/12586/4732749 火箭彈 2 339
## 2043 https://udn.com/news/story/12586/4732749 以來 2 339
## 2044 https://udn.com/news/story/12586/4732749 北部灣 2 339
## 2045 https://udn.com/news/story/12586/4732749 本土 2 339
## 2046 https://udn.com/news/story/12586/4732749 目的 2 339
## 2047 https://udn.com/news/story/12586/4732749 共出動 2 339
## 2048 https://udn.com/news/story/12586/4732749 各型 2 339
## 2049 https://udn.com/news/story/12586/4732749 成為 2 339
## 2050 https://udn.com/news/story/12586/4732749 官媒 2 339
## 2051 https://udn.com/news/story/12586/4732749 抵近 2 339
## 2052 https://udn.com/news/story/12586/4732749 沿海 2 339
## 2053 https://udn.com/news/story/12586/4732749 空域 2 339
## 2054 https://udn.com/news/story/12586/4732749 近日 2 339
## 2055 https://udn.com/news/story/12586/4732749 某旅 2 339
## 2056 https://udn.com/news/story/12586/4732749 炮彈 2 339
## 2057 https://udn.com/news/story/12586/4732749 突擊 2 339
## 2058 https://udn.com/news/story/12586/4732749 美中 2 339
## 2059 https://udn.com/news/story/12586/4732749 美國 2 339
## 2060 https://udn.com/news/story/12586/4732749 計劃 2 339
## 2061 https://udn.com/news/story/12586/4732749 飛機 2 339
## 2062 https://udn.com/news/story/12586/4732749 能力 2 339
## 2063 https://udn.com/news/story/12586/4732749 航空兵 2 339
## 2064 https://udn.com/news/story/12586/4732749 航訓彈 2 339
## 2065 https://udn.com/news/story/12586/4732749 訊息 2 339
## 2066 https://udn.com/news/story/12586/4732749 這次 2 339
## 2067 https://udn.com/news/story/12586/4732749 部隊 2 339
## 2068 https://udn.com/news/story/12586/4732749 場域 2 339
## 2069 https://udn.com/news/story/12586/4732749 發射 2 339
## 2070 https://udn.com/news/story/12586/4732749 新聞 2 339
## 2071 https://udn.com/news/story/12586/4732749 準確 2 339
## 2072 https://udn.com/news/story/12586/4732749 當時 2 339
## 2073 https://udn.com/news/story/12586/4732749 較勁 2 339
## 2074 https://udn.com/news/story/12586/4732749 對海 2 339
## 2075 https://udn.com/news/story/12586/4732749 廣義 2 339
## 2076 https://udn.com/news/story/12586/4732749 彈藥 2 339
## 2077 https://udn.com/news/story/12586/4732749 數十架 2 339
## 2078 https://udn.com/news/story/12586/4732749 數千枚 2 339
## 2079 https://udn.com/news/story/12586/4732749 戰區 2 339
## 2080 https://udn.com/news/story/12586/4732749 戰機 2 339
## 2081 https://udn.com/news/story/12586/4732749 機及 2 339
## 2082 https://udn.com/news/story/12586/4732749 檢驗 2 339
## 2083 https://udn.com/news/story/12586/4732749 舉行 2 339
## 2084 https://udn.com/news/story/12586/4732749 隸屬 2 339
## 2085 https://udn.com/news/story/12586/4732749 屬於 2 339
## 2086 https://udn.com/news/story/6809/4271642 不能 2 273
## 2087 https://udn.com/news/story/6809/4271642 中心 2 273
## 2088 https://udn.com/news/story/6809/4271642 今天 2 273
## 2089 https://udn.com/news/story/6809/4271642 主張 2 273
## 2090 https://udn.com/news/story/6809/4271642 北京大學 2 273
## 2091 https://udn.com/news/story/6809/4271642 仲裁 2 273
## 2092 https://udn.com/news/story/6809/4271642 共同開發 2 273
## 2093 https://udn.com/news/story/6809/4271642 合作 2 273
## 2094 https://udn.com/news/story/6809/4271642 合作開發 2 273
## 2095 https://udn.com/news/story/6809/4271642 存在 2 273
## 2096 https://udn.com/news/story/6809/4271642 利益 2 273
## 2097 https://udn.com/news/story/6809/4271642 希望 2 273
## 2098 https://udn.com/news/story/6809/4271642 足夠 2 273
## 2099 https://udn.com/news/story/6809/4271642 卸任 2 273
## 2100 https://udn.com/news/story/6809/4271642 承諾 2 273
## 2101 https://udn.com/news/story/6809/4271642 抱持 2 273
## 2102 https://udn.com/news/story/6809/4271642 表示 2 273
## 2103 https://udn.com/news/story/6809/4271642 非常 2 273
## 2104 https://udn.com/news/story/6809/4271642 信任 2 273
## 2105 https://udn.com/news/story/6809/4271642 政府 2 273
## 2106 https://udn.com/news/story/6809/4271642 政治 2 273
## 2107 https://udn.com/news/story/6809/4271642 研究 2 273
## 2108 https://udn.com/news/story/6809/4271642 研究院 2 273
## 2109 https://udn.com/news/story/6809/4271642 香港 2 273
## 2110 https://udn.com/news/story/6809/4271642 特洛 2 273
## 2111 https://udn.com/news/story/6809/4271642 能否 2 273
## 2112 https://udn.com/news/story/6809/4271642 菲中 2 273
## 2113 https://udn.com/news/story/6809/4271642 菲律賓海 2 273
## 2114 https://udn.com/news/story/6809/4271642 菲國 2 273
## 2115 https://udn.com/news/story/6809/4271642 意願 2 273
## 2116 https://udn.com/news/story/6809/4271642 解決 2 273
## 2117 https://udn.com/news/story/6809/4271642 論壇 2 273
## 2118 https://udn.com/news/story/6809/4271642 質疑 2 273
## 2119 https://udn.com/news/story/6809/4271642 學者 2 273
## 2120 https://udn.com/news/story/6809/4271642 戰略 2 273
## 2121 https://udn.com/news/story/6809/4271642 遵守 2 273
## 2122 https://udn.com/news/story/6809/4271642 總統 2 273
## 2123 https://udn.com/news/story/6809/4271642 舉行 2 273
## 2124 https://udn.com/news/story/6809/4271642 歸屬 2 273
## 2125 https://udn.com/news/story/6809/4271642 關係 2 273
## 2126 https://udn.com/news/story/6809/4271642 議題 2 273
## 2127 https://udn.com/news/story/6809/4272045 支持 2 158
## 2128 https://udn.com/news/story/6809/4272045 加強 2 158
## 2129 https://udn.com/news/story/6809/4272045 立場 2 158
## 2130 https://udn.com/news/story/6809/4272045 安全 2 158
## 2131 https://udn.com/news/story/6809/4272045 自由 2 158
## 2132 https://udn.com/news/story/6809/4272045 投資 2 158
## 2133 https://udn.com/news/story/6809/4272045 和平 2 158
## 2134 https://udn.com/news/story/6809/4272045 表示 2 158
## 2135 https://udn.com/news/story/6809/4272045 海域 2 158
## 2136 https://udn.com/news/story/6809/4272045 航空 2 158
## 2137 https://udn.com/news/story/6809/4272045 航海 2 158
## 2138 https://udn.com/news/story/6809/4272045 確保 2 158
## 2139 https://udn.com/news/story/6809/4272045 總理 2 158
## 2140 https://udn.com/news/story/6809/4279234 水域 2 268
## 2141 https://udn.com/news/story/6809/4279234 各方 2 268
## 2142 https://udn.com/news/story/6809/4279234 合作 2 268
## 2143 https://udn.com/news/story/6809/4279234 位於 2 268
## 2144 https://udn.com/news/story/6809/4279234 所有 2 268
## 2145 https://udn.com/news/story/6809/4279234 前進 2 268
## 2146 https://udn.com/news/story/6809/4279234 宣稱 2 268
## 2147 https://udn.com/news/story/6809/4279234 派遣 2 268
## 2148 https://udn.com/news/story/6809/4279234 相關 2 268
## 2149 https://udn.com/news/story/6809/4279234 島上 2 268
## 2150 https://udn.com/news/story/6809/4279234 區域 2 268
## 2151 https://udn.com/news/story/6809/4279234 情況 2 268
## 2152 https://udn.com/news/story/6809/4279234 採取任何 2 268
## 2153 https://udn.com/news/story/6809/4279234 探勘 2 268
## 2154 https://udn.com/news/story/6809/4279234 規定 2 268
## 2155 https://udn.com/news/story/6809/4279234 萬安 2 268
## 2156 https://udn.com/news/story/6809/4279234 遵守 2 268
## 2157 https://udn.com/news/story/6809/4279234 關注 2 268
## 2158 https://udn.com/news/story/6809/4308863 南沙 2 75
## 2159 https://udn.com/news/story/6809/4308863 南海 2 75
## 2160 https://udn.com/news/story/6809/4308863 美軍 2 75
## 2161 https://udn.com/news/story/6809/4308863 執行 2 75
## 2162 https://udn.com/news/story/6809/4308863 基利 2 75
## 2163 https://udn.com/news/story/6809/4308863 群島 2 75
## 2164 https://udn.com/news/story/6809/4308863 蒙哥馬利 2 75
## 2165 https://udn.com/news/story/6809/4308863 權利 2 75
## 2166 https://udn.com/news/story/6809/4313108 中國 2 348
## 2167 https://udn.com/news/story/6809/4313108 中華民國 2 348
## 2168 https://udn.com/news/story/6809/4313108 及造 2 348
## 2169 https://udn.com/news/story/6809/4313108 代表 2 348
## 2170 https://udn.com/news/story/6809/4313108 出席 2 348
## 2171 https://udn.com/news/story/6809/4313108 包括 2 348
## 2172 https://udn.com/news/story/6809/4313108 平台 2 348
## 2173 https://udn.com/news/story/6809/4313108 未來 2 348
## 2174 https://udn.com/news/story/6809/4313108 立場 2 348
## 2175 https://udn.com/news/story/6809/4313108 多國 2 348
## 2176 https://udn.com/news/story/6809/4313108 自由 2 348
## 2177 https://udn.com/news/story/6809/4313108 巡防艦 2 348
## 2178 https://udn.com/news/story/6809/4313108 防衛 2 348
## 2179 https://udn.com/news/story/6809/4313108 亞太 2 348
## 2180 https://udn.com/news/story/6809/4313108 官員 2 348
## 2181 https://udn.com/news/story/6809/4313108 武力 2 348
## 2182 https://udn.com/news/story/6809/4313108 法兩國 2 348
## 2183 https://udn.com/news/story/6809/4313108 法國 2 348
## 2184 https://udn.com/news/story/6809/4313108 美國 2 348
## 2185 https://udn.com/news/story/6809/4313108 英國 2 348
## 2186 https://udn.com/news/story/6809/4313108 英國皇家海軍 2 348
## 2187 https://udn.com/news/story/6809/4313108 軍事 2 348
## 2188 https://udn.com/news/story/6809/4313108 值得 2 348
## 2189 https://udn.com/news/story/6809/4313108 海峽 2 348
## 2190 https://udn.com/news/story/6809/4313108 能力 2 348
## 2191 https://udn.com/news/story/6809/4313108 航行 2 348
## 2192 https://udn.com/news/story/6809/4313108 針對 2 348
## 2193 https://udn.com/news/story/6809/4313108 國海軍 2 348
## 2194 https://udn.com/news/story/6809/4313108 國際 2 348
## 2195 https://udn.com/news/story/6809/4313108 強調 2 348
## 2196 https://udn.com/news/story/6809/4313108 這次 2 348
## 2197 https://udn.com/news/story/6809/4313108 資訊 2 348
## 2198 https://udn.com/news/story/6809/4313108 資深 2 348
## 2199 https://udn.com/news/story/6809/4313108 察長 2 348
## 2200 https://udn.com/news/story/6809/4313108 數位 2 348
## 2201 https://udn.com/news/story/6809/4313108 總督 2 348
## 2202 https://udn.com/news/story/6809/4313108 關注 2 348
## 2203 https://udn.com/news/story/6809/4313108 艦隊 2 348
## 2204 https://udn.com/news/story/6809/4503516 今天 2 127
## 2205 https://udn.com/news/story/6809/4503516 外海 2 127
## 2206 https://udn.com/news/story/6809/4503516 地質 2 127
## 2207 https://udn.com/news/story/6809/4503516 行動 2 127
## 2208 https://udn.com/news/story/6809/4503516 表示 2 127
## 2209 https://udn.com/news/story/6809/4503516 指出 2 127
## 2210 https://udn.com/news/story/6809/4503516 美國國務院 2 127
## 2211 https://udn.com/news/story/6809/4503516 海洋 2 127
## 2212 https://udn.com/news/story/6809/4503516 停止 2 127
## 2213 https://udn.com/news/story/6809/4503516 探勘 2 127
## 2214 https://udn.com/news/story/6809/4503516 這類 2 127
## 2215 https://udn.com/news/story/6809/4503516 圖表 2 127
## 2216 https://udn.com/news/story/6809/4503516 數據 2 127
## 2217 https://udn.com/news/story/6809/4503516 調查 2 127
## 2218 https://udn.com/news/story/6809/4503516 聲明 2 127
## 2219 https://udn.com/news/story/6809/4503516 關切 2 127
## 2220 https://udn.com/news/story/6809/4503516 霸凌行 2 127
## 2221 https://udn.com/news/story/6809/4504105 今天 2 102
## 2222 https://udn.com/news/story/6809/4504105 南海 2 102
## 2223 https://udn.com/news/story/6809/4504105 昨天 2 102
## 2224 https://udn.com/news/story/6809/4504105 區政府 2 102
## 2225 https://udn.com/news/story/6809/4504105 設立 2 102
## 2226 https://udn.com/news/story/6809/4504105 圖表 2 102
## 2227 https://udn.com/news/story/6809/4504105 管轄 2 102
## 2228 https://udn.com/news/story/6809/4504105 數據 2 102
## 2229 https://udn.com/news/story/6809/4551117 司令 2 178
## 2230 https://udn.com/news/story/6809/4551117 必須 2 178
## 2231 https://udn.com/news/story/6809/4551117 石油 2 178
## 2232 https://udn.com/news/story/6809/4551117 印太 2 178
## 2233 https://udn.com/news/story/6809/4551117 地區 2 178
## 2234 https://udn.com/news/story/6809/4551117 西卡 2 178
## 2235 https://udn.com/news/story/6809/4551117 佩拉 2 178
## 2236 https://udn.com/news/story/6809/4551117 阿基里 2 178
## 2237 https://udn.com/news/story/6809/4551117 南海 2 178
## 2238 https://udn.com/news/story/6809/4551117 查維斯 2 178
## 2239 https://udn.com/news/story/6809/4551117 美軍 2 178
## 2240 https://udn.com/news/story/6809/4551117 捍衛 2 178
## 2241 https://udn.com/news/story/6809/4551117 停止 2 178
## 2242 https://udn.com/news/story/6809/4551117 國家 2 178
## 2243 https://udn.com/news/story/6809/4551117 基於 2 178
## 2244 https://udn.com/news/story/6809/4551117 探勘 2 178
## 2245 https://udn.com/news/story/6809/4551117 凱徹 2 178
## 2246 https://udn.com/news/story/6809/4551117 號在 2 178
## 2247 https://udn.com/news/story/6809/4551117 圖表 2 178
## 2248 https://udn.com/news/story/6809/4551117 蒙哥馬利 2 178
## 2249 https://udn.com/news/story/6809/4551117 數據 2 178
## 2250 https://udn.com/news/story/6809/4551117 聲明 2 178
## 2251 https://udn.com/news/story/6809/4551117 霸凌 2 178
## 2252 https://udn.com/news/story/6809/4565919 中華人民共和國 2 372
## 2253 https://udn.com/news/story/6809/4565919 之際 2 372
## 2254 https://udn.com/news/story/6809/4565919 天然氣 2 372
## 2255 https://udn.com/news/story/6809/4565919 太平洋 2 372
## 2256 https://udn.com/news/story/6809/4565919 包括 2 372
## 2257 https://udn.com/news/story/6809/4565919 北京 2 372
## 2258 https://udn.com/news/story/6809/4565919 卡夫卡 2 372
## 2259 https://udn.com/news/story/6809/4565919 石油 2 372
## 2260 https://udn.com/news/story/6809/4565919 企圖 2 372
## 2261 https://udn.com/news/story/6809/4565919 印太 2 372
## 2262 https://udn.com/news/story/6809/4565919 自由 2 372
## 2263 https://udn.com/news/story/6809/4565919 亞太地區 2 372
## 2264 https://udn.com/news/story/6809/4565919 空軍 2 372
## 2265 https://udn.com/news/story/6809/4565919 持續 2 372
## 2266 https://udn.com/news/story/6809/4565919 指控 2 372
## 2267 https://udn.com/news/story/6809/4565919 施壓 2 372
## 2268 https://udn.com/news/story/6809/4565919 派遣 2 372
## 2269 https://udn.com/news/story/6809/4565919 美軍 2 372
## 2270 https://udn.com/news/story/6809/4565919 海上 2 372
## 2271 https://udn.com/news/story/6809/4565919 海事 2 372
## 2272 https://udn.com/news/story/6809/4565919 海峽 2 372
## 2273 https://udn.com/news/story/6809/4565919 航行 2 372
## 2274 https://udn.com/news/story/6809/4565919 航空母艦 2 372
## 2275 https://udn.com/news/story/6809/4565919 訊息 2 372
## 2276 https://udn.com/news/story/6809/4565919 國防部 2 372
## 2277 https://udn.com/news/story/6809/4565919 國家 2 372
## 2278 https://udn.com/news/story/6809/4565919 基地 2 372
## 2279 https://udn.com/news/story/6809/4565919 專注 2 372
## 2280 https://udn.com/news/story/6809/4565919 專題 2 372
## 2281 https://udn.com/news/story/6809/4565919 設施 2 372
## 2282 https://udn.com/news/story/6809/4565919 發言人 2 372
## 2283 https://udn.com/news/story/6809/4565919 傳達 2 372
## 2284 https://udn.com/news/story/6809/4565919 群島 2 372
## 2285 https://udn.com/news/story/6809/4565919 影響力 2 372
## 2286 https://udn.com/news/story/6809/4565919 鄰國 2 372
## 2287 https://udn.com/news/story/6809/4565919 戰略 2 372
## 2288 https://udn.com/news/story/6809/4565919 聲明 2 372
## 2289 https://udn.com/news/story/6809/4565919 擴大 2 372
## 2290 https://udn.com/news/story/6809/4565919 關島 2 372
## 2291 https://udn.com/news/story/6809/4565919 艦隊 2 372
## 2292 https://udn.com/news/story/6809/4651251 少將 2 205
## 2293 https://udn.com/news/story/6809/4651251 日本 2 205
## 2294 https://udn.com/news/story/6809/4651251 目前 2 205
## 2295 https://udn.com/news/story/6809/4651251 行動 2 205
## 2296 https://udn.com/news/story/6809/4651251 兩支 2 205
## 2297 https://udn.com/news/story/6809/4651251 南海 2 205
## 2298 https://udn.com/news/story/6809/4651251 指揮官 2 205
## 2299 https://udn.com/news/story/6809/4651251 柯克說 2 205
## 2300 https://udn.com/news/story/6809/4651251 美軍 2 205
## 2301 https://udn.com/news/story/6809/4651251 展現 2 205
## 2302 https://udn.com/news/story/6809/4651251 航母 2 205
## 2303 https://udn.com/news/story/6809/4651251 航艦 2 205
## 2304 https://udn.com/news/story/6809/4651251 訊息 2 205
## 2305 https://udn.com/news/story/6809/4651251 區域 2 205
## 2306 https://udn.com/news/story/6809/4651251 新冠肺炎 2 205
## 2307 https://udn.com/news/story/6809/4651251 肆虐 2 205
## 2308 https://udn.com/news/story/6809/4651251 號和 2 205
## 2309 https://udn.com/news/story/6809/4651251 號為 2 205
## 2310 https://udn.com/news/story/6809/4651251 戰備 2 205
## 2311 https://udn.com/news/story/6809/4651251 艦隊 2 205
## 2312 https://udn.com/news/story/6809/4678024 不是 2 184
## 2313 https://udn.com/news/story/6809/4678024 主張 2 184
## 2314 https://udn.com/news/story/6809/4678024 地區 2 184
## 2315 https://udn.com/news/story/6809/4678024 安全 2 184
## 2316 https://udn.com/news/story/6809/4678024 非法 2 184
## 2317 https://udn.com/news/story/6809/4678024 挑戰 2 184
## 2318 https://udn.com/news/story/6809/4678024 疫情 2 184
## 2319 https://udn.com/news/story/6809/4678024 美中 2 184
## 2320 https://udn.com/news/story/6809/4678024 軍艦 2 184
## 2321 https://udn.com/news/story/6809/4678024 能力 2 184
## 2322 https://udn.com/news/story/6809/4678024 雷根 2 184
## 2323 https://udn.com/news/story/6809/4678024 預計 2 184
## 2324 https://udn.com/news/story/6809/4678024 維科夫 2 184
## 2325 https://udn.com/news/story/6809/4678024 數據 2 184
## 2326 https://udn.com/news/story/6809/4678024 穩定 2 184
## 2327 https://udn.com/news/story/6809/4678125 中方 2 205
## 2328 https://udn.com/news/story/6809/4678125 日起 2 205
## 2329 https://udn.com/news/story/6809/4678125 北京 2 205
## 2330 https://udn.com/news/story/6809/4678125 尼米茲 2 205
## 2331 https://udn.com/news/story/6809/4678125 打擊 2 205
## 2332 https://udn.com/news/story/6809/4678125 全天候 2 205
## 2333 https://udn.com/news/story/6809/4678125 罕見 2 205
## 2334 https://udn.com/news/story/6809/4678125 指出 2 205
## 2335 https://udn.com/news/story/6809/4678125 疫情 2 205
## 2336 https://udn.com/news/story/6809/4678125 美中 2 205
## 2337 https://udn.com/news/story/6809/4678125 訓練 2 205
## 2338 https://udn.com/news/story/6809/4678125 起降 2 205
## 2339 https://udn.com/news/story/6809/4678125 區域 2 205
## 2340 https://udn.com/news/story/6809/4678125 華爾街日報 2 205
## 2341 https://udn.com/news/story/6809/4678125 傳達 2 205
## 2342 https://udn.com/news/story/6809/4678125 演練 2 205
## 2343 https://udn.com/news/story/6809/4678125 數據 2 205
## 2344 https://udn.com/news/story/6809/4678125 聯合 2 205
## 2345 https://udn.com/news/story/6809/4678125 雙航艦 2 205
## 2346 https://udn.com/news/story/6809/4678125 艦載機 2 205
## 2347 https://udn.com/news/story/6809/4682238 不會 2 143
## 2348 https://udn.com/news/story/6809/4682238 作戰 2 143
## 2349 https://udn.com/news/story/6809/4682238 表示 2 143
## 2350 https://udn.com/news/story/6809/4682238 疫情 2 143
## 2351 https://udn.com/news/story/6809/4682238 美中 2 143
## 2352 https://udn.com/news/story/6809/4682238 軍演 2 143
## 2353 https://udn.com/news/story/6809/4682238 退縮 2 143
## 2354 https://udn.com/news/story/6809/4682238 最新 2 143
## 2355 https://udn.com/news/story/6809/4682238 數據 2 143
## 2356 https://udn.com/news/story/6809/4682238 舉行 2 143
## 2357 https://udn.com/news/story/6809/4682642 今天 2 186
## 2358 https://udn.com/news/story/6809/4682642 出動 2 186
## 2359 https://udn.com/news/story/6809/4682642 尼米茲 2 186
## 2360 https://udn.com/news/story/6809/4682642 打擊 2 186
## 2361 https://udn.com/news/story/6809/4682642 各國 2 186
## 2362 https://udn.com/news/story/6809/4682642 兩個 2 186
## 2363 https://udn.com/news/story/6809/4682642 附近 2 186
## 2364 https://udn.com/news/story/6809/4682642 柯克 2 186
## 2365 https://udn.com/news/story/6809/4682642 疫情 2 186
## 2366 https://udn.com/news/story/6809/4682642 看到 2 186
## 2367 https://udn.com/news/story/6809/4682642 美軍 2 186
## 2368 https://udn.com/news/story/6809/4682642 軍艦 2 186
## 2369 https://udn.com/news/story/6809/4682642 展開 2 186
## 2370 https://udn.com/news/story/6809/4682642 海域 2 186
## 2371 https://udn.com/news/story/6809/4682642 航空母艦 2 186
## 2372 https://udn.com/news/story/6809/4682642 數據 2 186
## 2373 https://udn.com/news/story/6809/4682642 艦隊 2 186
## 2374 https://udn.com/news/story/6809/4686528 反對 2 215
## 2375 https://udn.com/news/story/6809/4686528 加劇 2 215
## 2376 https://udn.com/news/story/6809/4686528 包括 2 215
## 2377 https://udn.com/news/story/6809/4686528 安全 2 215
## 2378 https://udn.com/news/story/6809/4686528 自由 2 215
## 2379 https://udn.com/news/story/6809/4686528 改變現狀 2 215
## 2380 https://udn.com/news/story/6809/4686528 東海 2 215
## 2381 https://udn.com/news/story/6809/4686528 爭端 2 215
## 2382 https://udn.com/news/story/6809/4686528 表示 2 215
## 2383 https://udn.com/news/story/6809/4686528 近日 2 215
## 2384 https://udn.com/news/story/6809/4686528 指出 2 215
## 2385 https://udn.com/news/story/6809/4686528 海上 2 215
## 2386 https://udn.com/news/story/6809/4686528 國防 2 215
## 2387 https://udn.com/news/story/6809/4686528 國防部長 2 215
## 2388 https://udn.com/news/story/6809/4686528 強烈 2 215
## 2389 https://udn.com/news/story/6809/4686528 新冠肺炎 2 215
## 2390 https://udn.com/news/story/6809/4686528 實施 2 215
## 2391 https://udn.com/news/story/6809/4686528 對話 2 215
## 2392 https://udn.com/news/story/6809/4686528 緊張局勢 2 215
## 2393 https://udn.com/news/story/6809/4686528 數據 2 215
## 2394 https://udn.com/news/story/6809/4686528 繁榮 2 215
## 2395 https://udn.com/news/story/6809/4686528 聯合聲明 2 215
## 2396 https://udn.com/news/story/6809/4686528 穩定 2 215
## 2397 https://udn.com/news/story/6809/4686528 關切 2 215
## 2398 https://udn.com/news/story/6809/4686528 嚴重 2 215
## 2399 https://udn.com/news/story/6809/4695303 中國 2 252
## 2400 https://udn.com/news/story/6809/4695303 自衛隊 2 252
## 2401 https://udn.com/news/story/6809/4695303 完成 2 252
## 2402 https://udn.com/news/story/6809/4695303 防衛 2 252
## 2403 https://udn.com/news/story/6809/4695303 防禦 2 252
## 2404 https://udn.com/news/story/6809/4695303 使用 2 252
## 2405 https://udn.com/news/story/6809/4695303 周邊 2 252
## 2406 https://udn.com/news/story/6809/4695303 東海 2 252
## 2407 https://udn.com/news/story/6809/4695303 指出 2 252
## 2408 https://udn.com/news/story/6809/4695303 疫情 2 252
## 2409 https://udn.com/news/story/6809/4695303 飛行 2 252
## 2410 https://udn.com/news/story/6809/4695303 偵測 2 252
## 2411 https://udn.com/news/story/6809/4695303 採購 2 252
## 2412 https://udn.com/news/story/6809/4695303 設備 2 252
## 2413 https://udn.com/news/story/6809/4695303 設置 2 252
## 2414 https://udn.com/news/story/6809/4695303 透過 2 252
## 2415 https://udn.com/news/story/6809/4695303 報導 2 252
## 2416 https://udn.com/news/story/6809/4695303 進出 2 252
## 2417 https://udn.com/news/story/6809/4695303 監視 2 252
## 2418 https://udn.com/news/story/6809/4695303 製造 2 252
## 2419 https://udn.com/news/story/6809/4695303 數據 2 252
## 2420 https://udn.com/news/story/6809/4695303 頻繁 2 252
## 2421 https://udn.com/news/story/6809/4695303 雙方 2 252
## 2422 https://udn.com/news/story/6809/4699778 主權 2 214
## 2423 https://udn.com/news/story/6809/4699778 自由 2 214
## 2424 https://udn.com/news/story/6809/4699778 沒有 2 214
## 2425 https://udn.com/news/story/6809/4699778 依據 2 214
## 2426 https://udn.com/news/story/6809/4699778 非法 2 214
## 2427 https://udn.com/news/story/6809/4699778 帝國 2 214
## 2428 https://udn.com/news/story/6809/4699778 政策 2 214
## 2429 https://udn.com/news/story/6809/4699778 脅迫 2 214
## 2430 https://udn.com/news/story/6809/4699778 國家 2 214
## 2431 https://udn.com/news/story/6809/4699778 國際 2 214
## 2432 https://udn.com/news/story/6809/4699778 強化 2 214
## 2433 https://udn.com/news/story/6809/4699778 夥伴 2 214
## 2434 https://udn.com/news/story/6809/4699778 維護 2 214
## 2435 https://udn.com/news/story/6809/4699778 數據 2 214
## 2436 https://udn.com/news/story/6809/4699778 聲明 2 214
## 2437 https://udn.com/news/story/6809/4699778 霸凌 2 214
## 2438 https://udn.com/news/story/6809/4699831 主權 2 134
## 2439 https://udn.com/news/story/6809/4699831 立場 2 134
## 2440 https://udn.com/news/story/6809/4699831 自由 2 134
## 2441 https://udn.com/news/story/6809/4699831 爭議 2 134
## 2442 https://udn.com/news/story/6809/4699831 非法 2 134
## 2443 https://udn.com/news/story/6809/4699831 美軍 2 134
## 2444 https://udn.com/news/story/6809/4699831 數據 2 134
## 2445 https://udn.com/news/story/6809/4699831 龐培 2 134
## 2446 https://udn.com/news/story/6809/4702067 力量 2 236
## 2447 https://udn.com/news/story/6809/4702067 中共 2 236
## 2448 https://udn.com/news/story/6809/4702067 他國 2 236
## 2449 https://udn.com/news/story/6809/4702067 包括 2 236
## 2450 https://udn.com/news/story/6809/4702067 台灣 2 236
## 2451 https://udn.com/news/story/6809/4702067 正在 2 236
## 2452 https://udn.com/news/story/6809/4702067 石油 2 236
## 2453 https://udn.com/news/story/6809/4702067 地方 2 236
## 2454 https://udn.com/news/story/6809/4702067 制裁 2 236
## 2455 https://udn.com/news/story/6809/4702067 東海 2 236
## 2456 https://udn.com/news/story/6809/4702067 表示 2 236
## 2457 https://udn.com/news/story/6809/4702067 附近 2 236
## 2458 https://udn.com/news/story/6809/4702067 威脅 2 236
## 2459 https://udn.com/news/story/6809/4702067 建設 2 236
## 2460 https://udn.com/news/story/6809/4702067 挑釁 2 236
## 2461 https://udn.com/news/story/6809/4702067 軍事 2 236
## 2462 https://udn.com/news/story/6809/4702067 國家 2 236
## 2463 https://udn.com/news/story/6809/4702067 國際法 2 236
## 2464 https://udn.com/news/story/6809/4702067 探勘 2 236
## 2465 https://udn.com/news/story/6809/4702067 造成 2 236
## 2466 https://udn.com/news/story/6809/4702067 勝利 2 236
## 2467 https://udn.com/news/story/6809/4702067 提到 2 236
## 2468 https://udn.com/news/story/6809/4702067 實施 2 236
## 2469 https://udn.com/news/story/6809/4702067 漁船 2 236
## 2470 https://udn.com/news/story/6809/4702067 數據 2 236
## 2471 https://udn.com/news/story/6809/4702067 聯合開發 2 236
## 2472 https://udn.com/news/story/6809/4702067 擴大 2 236
## 2473 https://udn.com/news/story/6809/4702142 一艘 2 248
## 2474 https://udn.com/news/story/6809/4702142 大部分 2 248
## 2475 https://udn.com/news/story/6809/4702142 公司 2 248
## 2476 https://udn.com/news/story/6809/4702142 以往 2 248
## 2477 https://udn.com/news/story/6809/4702142 任務 2 248
## 2478 https://udn.com/news/story/6809/4702142 各國 2 248
## 2479 https://udn.com/news/story/6809/4702142 自由 2 248
## 2480 https://udn.com/news/story/6809/4702142 行動 2 248
## 2481 https://udn.com/news/story/6809/4702142 承認 2 248
## 2482 https://udn.com/news/story/6809/4702142 東南亞 2 248
## 2483 https://udn.com/news/story/6809/4702142 油氣 2 248
## 2484 https://udn.com/news/story/6809/4702142 爭端 2 248
## 2485 https://udn.com/news/story/6809/4702142 非法占有 2 248
## 2486 https://udn.com/news/story/6809/4702142 政府 2 248
## 2487 https://udn.com/news/story/6809/4702142 美聯社 2 248
## 2488 https://udn.com/news/story/6809/4702142 海平面 2 248
## 2489 https://udn.com/news/story/6809/4702142 航行 2 248
## 2490 https://udn.com/news/story/6809/4702142 高於 2 248
## 2491 https://udn.com/news/story/6809/4702142 國家 2 248
## 2492 https://udn.com/news/story/6809/4702142 國際法 2 248
## 2493 https://udn.com/news/story/6809/4702142 採取 2 248
## 2494 https://udn.com/news/story/6809/4702142 船隻 2 248
## 2495 https://udn.com/news/story/6809/4702142 這份 2 248
## 2496 https://udn.com/news/story/6809/4702142 發表 2 248
## 2497 https://udn.com/news/story/6809/4702142 菲律賓 2 248
## 2498 https://udn.com/news/story/6809/4702142 意味 2 248
## 2499 https://udn.com/news/story/6809/4702142 數據 2 248
## 2500 https://udn.com/news/story/6809/4702142 總統 2 248
## 2501 https://udn.com/news/story/6809/4702142 鑽探 2 248
## 2502 https://udn.com/news/story/6809/4702638 北京 2 245
## 2503 https://udn.com/news/story/6809/4702638 全球 2 245
## 2504 https://udn.com/news/story/6809/4702638 安全 2 245
## 2505 https://udn.com/news/story/6809/4702638 威脅 2 245
## 2506 https://udn.com/news/story/6809/4702638 軍艦 2 245
## 2507 https://udn.com/news/story/6809/4702638 飛行 2 245
## 2508 https://udn.com/news/story/6809/4702638 捍衛 2 245
## 2509 https://udn.com/news/story/6809/4702638 海上 2 245
## 2510 https://udn.com/news/story/6809/4702638 海軍 2 245
## 2511 https://udn.com/news/story/6809/4702638 國際 2 245
## 2512 https://udn.com/news/story/6809/4702638 通道 2 245
## 2513 https://udn.com/news/story/6809/4702638 提出 2 245
## 2514 https://udn.com/news/story/6809/4702638 發言人 2 245
## 2515 https://udn.com/news/story/6809/4702638 進入 2 245
## 2516 https://udn.com/news/story/6809/4702638 當地 2 245
## 2517 https://udn.com/news/story/6809/4702638 過度 2 245
## 2518 https://udn.com/news/story/6809/4702638 領海 2 245
## 2519 https://udn.com/news/story/6809/4702638 數據 2 245
## 2520 https://udn.com/news/story/6809/4702638 擁有 2 245
## 2521 https://udn.com/news/story/6809/4702638 繁榮 2 245
## 2522 https://udn.com/news/story/6809/4702638 聲稱 2 245
## 2523 https://udn.com/news/story/6809/4707133 中國 2 101
## 2524 https://udn.com/news/story/6809/4707133 予以 2 101
## 2525 https://udn.com/news/story/6809/4707133 採取 2 101
## 2526 https://udn.com/news/story/6809/4707133 數據 2 101
## 2527 https://udn.com/news/story/6809/4709443 二戰 2 761
## 2528 https://udn.com/news/story/6809/4709443 力量 2 761
## 2529 https://udn.com/news/story/6809/4709443 反應 2 761
## 2530 https://udn.com/news/story/6809/4709443 巴馬 2 761
## 2531 https://udn.com/news/story/6809/4709443 主張 2 761
## 2532 https://udn.com/news/story/6809/4709443 主義 2 761
## 2533 https://udn.com/news/story/6809/4709443 主權 2 761
## 2534 https://udn.com/news/story/6809/4709443 代價 2 761
## 2535 https://udn.com/news/story/6809/4709443 出兵 2 761
## 2536 https://udn.com/news/story/6809/4709443 包括 2 761
## 2537 https://udn.com/news/story/6809/4709443 本週一 2 761
## 2538 https://udn.com/news/story/6809/4709443 正好 2 761
## 2539 https://udn.com/news/story/6809/4709443 民主黨 2 761
## 2540 https://udn.com/news/story/6809/4709443 各方 2 761
## 2541 https://udn.com/news/story/6809/4709443 各國 2 761
## 2542 https://udn.com/news/story/6809/4709443 同樣 2 761
## 2543 https://udn.com/news/story/6809/4709443 收到 2 761
## 2544 https://udn.com/news/story/6809/4709443 考慮 2 761
## 2545 https://udn.com/news/story/6809/4709443 肌肉 2 761
## 2546 https://udn.com/news/story/6809/4709443 行為 2 761
## 2547 https://udn.com/news/story/6809/4709443 抗中 2 761
## 2548 https://udn.com/news/story/6809/4709443 決定 2 761
## 2549 https://udn.com/news/story/6809/4709443 底線 2 761
## 2550 https://udn.com/news/story/6809/4709443 往往 2 761
## 2551 https://udn.com/news/story/6809/4709443 明確 2 761
## 2552 https://udn.com/news/story/6809/4709443 東南亞 2 761
## 2553 https://udn.com/news/story/6809/4709443 表明 2 761
## 2554 https://udn.com/news/story/6809/4709443 疫情 2 761
## 2555 https://udn.com/news/story/6809/4709443 美中 2 761
## 2556 https://udn.com/news/story/6809/4709443 效果 2 761
## 2557 https://udn.com/news/story/6809/4709443 海上 2 761
## 2558 https://udn.com/news/story/6809/4709443 海域 2 761
## 2559 https://udn.com/news/story/6809/4709443 馬來西亞 2 761
## 2560 https://udn.com/news/story/6809/4709443 問題 2 761
## 2561 https://udn.com/news/story/6809/4709443 採取行動 2 761
## 2562 https://udn.com/news/story/6809/4709443 組織 2 761
## 2563 https://udn.com/news/story/6809/4709443 許多 2 761
## 2564 https://udn.com/news/story/6809/4709443 這也 2 761
## 2565 https://udn.com/news/story/6809/4709443 這是 2 761
## 2566 https://udn.com/news/story/6809/4709443 喬治亞 2 761
## 2567 https://udn.com/news/story/6809/4709443 普丁 2 761
## 2568 https://udn.com/news/story/6809/4709443 期待 2 761
## 2569 https://udn.com/news/story/6809/4709443 登野城 2 761
## 2570 https://udn.com/news/story/6809/4709443 發生 2 761
## 2571 https://udn.com/news/story/6809/4709443 發展 2 761
## 2572 https://udn.com/news/story/6809/4709443 越南 2 761
## 2573 https://udn.com/news/story/6809/4709443 溝通 2 761
## 2574 https://udn.com/news/story/6809/4709443 綏靖 2 761
## 2575 https://udn.com/news/story/6809/4709443 綏靖主義 2 761
## 2576 https://udn.com/news/story/6809/4709443 實施 2 761
## 2577 https://udn.com/news/story/6809/4709443 對抗 2 761
## 2578 https://udn.com/news/story/6809/4709443 撤軍 2 761
## 2579 https://udn.com/news/story/6809/4709443 漠視 2 761
## 2580 https://udn.com/news/story/6809/4709443 數據 2 761
## 2581 https://udn.com/news/story/6809/4709443 導致 2 761
## 2582 https://udn.com/news/story/6809/4709443 擔任 2 761
## 2583 https://udn.com/news/story/6809/4709443 錯誤 2 761
## 2584 https://udn.com/news/story/6809/4709443 應該 2 761
## 2585 https://udn.com/news/story/6809/4709443 應對 2 761
## 2586 https://udn.com/news/story/6809/4709443 總統 2 761
## 2587 https://udn.com/news/story/6809/4709443 聯盟 2 761
## 2588 https://udn.com/news/story/6809/4709443 邊界 2 761
## 2589 https://udn.com/news/story/6809/4724267 一段距離 2 192
## 2590 https://udn.com/news/story/6809/4724267 之前 2 192
## 2591 https://udn.com/news/story/6809/4724267 今天 2 192
## 2592 https://udn.com/news/story/6809/4724267 反潛 2 192
## 2593 https://udn.com/news/story/6809/4724267 外海 2 192
## 2594 https://udn.com/news/story/6809/4724267 平台 2 192
## 2595 https://udn.com/news/story/6809/4724267 本土 2 192
## 2596 https://udn.com/news/story/6809/4724267 披露 2 192
## 2597 https://udn.com/news/story/6809/4724267 抵近 2 192
## 2598 https://udn.com/news/story/6809/4724267 武器 2 192
## 2599 https://udn.com/news/story/6809/4724267 近來 2 192
## 2600 https://udn.com/news/story/6809/4724267 指揮 2 192
## 2601 https://udn.com/news/story/6809/4724267 設計 2 192
## 2602 https://udn.com/news/story/6809/4724267 連續 2 192
## 2603 https://udn.com/news/story/6809/4724267 陸軍 2 192
## 2604 https://udn.com/news/story/6809/4724267 提到 2 192
## 2605 https://udn.com/news/story/6809/4724267 最近 2 192
## 2606 https://udn.com/news/story/6809/4724267 發射 2 192
## 2607 https://udn.com/news/story/6809/4724267 距離 2 192
## 2608 https://udn.com/news/story/6809/4724267 進入 2 192
## 2609 https://udn.com/news/story/6809/4724267 黃海 2 192
## 2610 https://udn.com/news/story/6809/4724267 電子 2 192
## 2611 https://udn.com/news/story/6809/4734809 中國 2 54
## 2612 https://udn.com/news/story/6809/4734809 杜特蒂 2 54
## 2613 https://udn.com/news/story/6809/4734809 表示 2 54
## 2614 https://udn.com/news/story/6809/4734809 菲國 2 54
## 2615 https://udn.com/news/story/6809/4734809 進行 2 54
## 2616 https://udn.com/news/story/6809/4734809 開戰 2 54
## 2617 https://udn.com/news/story/6809/4765714 北京 2 270
## 2618 https://udn.com/news/story/6809/4765714 可能 2 270
## 2619 https://udn.com/news/story/6809/4765714 必須 2 270
## 2620 https://udn.com/news/story/6809/4765714 企圖 2 270
## 2621 https://udn.com/news/story/6809/4765714 行為 2 270
## 2622 https://udn.com/news/story/6809/4765714 社會 2 270
## 2623 https://udn.com/news/story/6809/4765714 秩序 2 270
## 2624 https://udn.com/news/story/6809/4765714 採取 2 270
## 2625 https://udn.com/news/story/6809/4765714 現在 2 270
## 2626 https://udn.com/news/story/6809/4765714 盟國 2 270
## 2627 https://udn.com/news/story/6809/4765714 試圖 2 270
## 2628 https://udn.com/news/story/6809/4765714 夥伴 2 270
## 2629 https://udn.com/news/story/6809/4765714 澳洲 2 270
## 2630 https://udn.com/news/story/6809/4775709 失控 2 211
## 2631 https://udn.com/news/story/6809/4775709 目前 2 211
## 2632 https://udn.com/news/story/6809/4775709 行動 2 211
## 2633 https://udn.com/news/story/6809/4775709 近期 2 211
## 2634 https://udn.com/news/story/6809/4775709 保持 2 211
## 2635 https://udn.com/news/story/6809/4775709 南華早報 2 211
## 2636 https://udn.com/news/story/6809/4775709 美方 2 211
## 2637 https://udn.com/news/story/6809/4775709 軍方 2 211
## 2638 https://udn.com/news/story/6809/4775709 強調 2 211
## 2639 https://udn.com/news/story/6809/4775709 率先 2 211
## 2640 https://udn.com/news/story/6809/4775709 報導 2 211
## 2641 https://udn.com/news/story/6809/4775709 提到 2 211
## 2642 https://udn.com/news/story/6809/4775709 絕不會 2 211
## 2643 https://udn.com/news/story/6809/4775709 開火 2 211
## 2644 https://udn.com/news/story/6809/4775709 新華社 2 211
## 2645 https://udn.com/news/story/6809/4775709 對美 2 211
## 2646 https://udn.com/news/story/6809/4775709 態度 2 211
## 2647 https://udn.com/news/story/6809/4786257 不斷 2 170
## 2648 https://udn.com/news/story/6809/4786257 主炮 2 170
## 2649 https://udn.com/news/story/6809/4786257 台灣 2 170
## 2650 https://udn.com/news/story/6809/4786257 直升機 2 170
## 2651 https://udn.com/news/story/6809/4786257 美國 2 170
## 2652 https://udn.com/news/story/6809/4786257 海上 2 170
## 2653 https://udn.com/news/story/6809/4786257 海域 2 170
## 2654 https://udn.com/news/story/6809/4786257 訓練 2 170
## 2655 https://udn.com/news/story/6809/4786257 魚雷 2 170
## 2656 https://udn.com/news/story/6809/4786257 發出 2 170
## 2657 https://udn.com/news/story/6809/4786257 發射 2 170
## 2658 https://udn.com/news/story/6809/4786257 著艦 2 170
## 2659 https://udn.com/news/story/6809/4786257 進行 2 170
## 2660 https://udn.com/news/story/6809/4786257 戰區 2 170
## 2661 https://udn.com/news/story/6809/4808733 加入 2 196
## 2662 https://udn.com/news/story/6809/4808733 投票 2 196
## 2663 https://udn.com/news/story/6809/4808733 呼籲 2 196
## 2664 https://udn.com/news/story/6809/4808733 國務卿 2 196
## 2665 https://udn.com/news/story/6809/4808733 報導 2 196
## 2666 https://udn.com/news/story/6809/4808733 提名 2 196
## 2667 https://udn.com/news/story/6809/4808733 機構 2 196
## 2668 https://udn.com/news/story/6809/4808733 選出 2 196
## 2669 https://udn.com/news/story/6809/4808733 舉行 2 196
## 2670 https://udn.com/news/story/6809/4812685 上海 2 292
## 2671 https://udn.com/news/story/6809/4812685 以來 2 292
## 2672 https://udn.com/news/story/6809/4812685 出口 2 292
## 2673 https://udn.com/news/story/6809/4812685 交通 2 292
## 2674 https://udn.com/news/story/6809/4812685 全球 2 292
## 2675 https://udn.com/news/story/6809/4812685 共同 2 292
## 2676 https://udn.com/news/story/6809/4812685 列入 2 292
## 2677 https://udn.com/news/story/6809/4812685 合作 2 292
## 2678 https://udn.com/news/story/6809/4812685 利用 2 292
## 2679 https://udn.com/news/story/6809/4812685 技術 2 292
## 2680 https://udn.com/news/story/6809/4812685 協助 2 292
## 2681 https://udn.com/news/story/6809/4812685 前哨 2 292
## 2682 https://udn.com/news/story/6809/4812685 宣布 2 292
## 2683 https://udn.com/news/story/6809/4812685 建造 2 292
## 2684 https://udn.com/news/story/6809/4812685 指出 2 292
## 2685 https://udn.com/news/story/6809/4812685 軍隊 2 292
## 2686 https://udn.com/news/story/6809/4812685 參與 2 292
## 2687 https://udn.com/news/story/6809/4812685 國際 2 292
## 2688 https://udn.com/news/story/6809/4812685 疏浚 2 292
## 2689 https://udn.com/news/story/6809/4812685 超過 2 292
## 2690 https://udn.com/news/story/6809/4812685 集團 2 292
## 2691 https://udn.com/news/story/6809/4812685 集團公司 2 292
## 2692 https://udn.com/news/story/6809/4812685 傷害 2 292
## 2693 https://udn.com/news/story/6809/4812685 新聞稿 2 292
## 2694 https://udn.com/news/story/6809/4812685 電子科技 2 292
## 2695 https://udn.com/news/story/6809/4812685 夥伴 2 292
## 2696 https://udn.com/news/story/6809/4812685 管制 2 292
## 2697 https://udn.com/news/story/6809/4812685 鄰國 2 292
## 2698 https://udn.com/news/story/6809/4812685 環境 2 292
## 2699 https://udn.com/news/story/6809/4812685 點名 2 292
## 2700 https://udn.com/news/story/6809/4812685 穩定 2 292
## 2701 https://udn.com/news/story/6809/4812688 正常 2 130
## 2702 https://udn.com/news/story/6809/4812688 企業 2 130
## 2703 https://udn.com/news/story/6809/4812688 建設 2 130
## 2704 https://udn.com/news/story/6809/4812688 美國 2 130
## 2705 https://udn.com/news/story/6809/4812688 美國商務部 2 130
## 2706 https://udn.com/news/story/6809/4812688 修建 2 130
## 2707 https://udn.com/news/story/6809/4812688 國土 2 130
## 2708 https://udn.com/news/story/6809/4812688 設施 2 130
## 2709 https://udn.com/news/story/6809/4812688 發布 2 130
## 2710 https://udn.com/news/story/6809/4812688 新聞稿 2 130
## 2711 https://udn.com/news/story/6809/4812688 擴大 2 130
## 2712 https://udn.com/news/story/6809/4813050 中程飛彈 2 100
## 2713 https://udn.com/news/story/6809/4813050 兩枚 2 100
## 2714 https://udn.com/news/story/6809/4813050 東風 2 100
## 2715 https://udn.com/news/story/6809/4813050 軍事 2 100
## 2716 https://udn.com/news/story/6809/4813050 迫使 2 100
## 2717 https://udn.com/news/story/6809/4813538 一些 2 268
## 2718 https://udn.com/news/story/6809/4813538 一部分 2 268
## 2719 https://udn.com/news/story/6809/4813538 不是 2 268
## 2720 https://udn.com/news/story/6809/4813538 內容 2 268
## 2721 https://udn.com/news/story/6809/4813538 世界觀 2 268
## 2722 https://udn.com/news/story/6809/4813538 出版 2 268
## 2723 https://udn.com/news/story/6809/4813538 台灣 2 268
## 2724 https://udn.com/news/story/6809/4813538 回收 2 268
## 2725 https://udn.com/news/story/6809/4813538 呈現 2 268
## 2726 https://udn.com/news/story/6809/4813538 具有 2 268
## 2727 https://udn.com/news/story/6809/4813538 制度 2 268
## 2728 https://udn.com/news/story/6809/4813538 周邊國家 2 268
## 2729 https://udn.com/news/story/6809/4813538 社會 2 268
## 2730 https://udn.com/news/story/6809/4813538 社會主義 2 268
## 2731 https://udn.com/news/story/6809/4813538 表示 2 268
## 2732 https://udn.com/news/story/6809/4813538 特色 2 268
## 2733 https://udn.com/news/story/6809/4813538 強大 2 268
## 2734 https://udn.com/news/story/6809/4813538 超過 2 268
## 2735 https://udn.com/news/story/6809/4813538 新聞 2 268
## 2736 https://udn.com/news/story/6809/4813538 語言 2 268
## 2737 https://udn.com/news/story/6809/4813538 衛報 2 268
## 2738 https://udn.com/news/story/6809/4813538 學校 2 268
## 2739 https://udn.com/news/story/6809/4813538 觀點 2 268
## 2740 https://udn.com/news/story/6809/4815509 外交部長 2 248
## 2741 https://udn.com/news/story/6809/4815509 平衡 2 248
## 2742 https://udn.com/news/story/6809/4815509 西沙 2 248
## 2743 https://udn.com/news/story/6809/4815509 呼籲 2 248
## 2744 https://udn.com/news/story/6809/4815509 附近 2 248
## 2745 https://udn.com/news/story/6809/4815509 軍演 2 248
## 2746 https://udn.com/news/story/6809/4815509 時說 2 248
## 2747 https://udn.com/news/story/6809/4815509 問題 2 248
## 2748 https://udn.com/news/story/6809/4815509 強調 2 248
## 2749 https://udn.com/news/story/6809/4815509 接受 2 248
## 2750 https://udn.com/news/story/6809/4815509 訪談 2 248
## 2751 https://udn.com/news/story/6809/4815509 報導 2 248
## 2752 https://udn.com/news/story/6809/4815509 菲律賓 2 248
## 2753 https://udn.com/news/story/6809/4815509 進行 2 248
## 2754 https://udn.com/news/story/6809/4815509 群島 2 248
## 2755 https://udn.com/news/story/6809/4815509 路透 2 248
## 2756 https://udn.com/news/story/6809/4815509 權力 2 248
## 2757 https://udn.com/news/story/6809/4817433 一位 2 404
## 2758 https://udn.com/news/story/6809/4817433 人造 2 404
## 2759 https://udn.com/news/story/6809/4817433 引發 2 404
## 2760 https://udn.com/news/story/6809/4817433 主要 2 404
## 2761 https://udn.com/news/story/6809/4817433 他國 2 404
## 2762 https://udn.com/news/story/6809/4817433 出口 2 404
## 2763 https://udn.com/news/story/6809/4817433 包含 2 404
## 2764 https://udn.com/news/story/6809/4817433 四枚 2 404
## 2765 https://udn.com/news/story/6809/4817433 地點 2 404
## 2766 https://udn.com/news/story/6809/4817433 托塔 2 404
## 2767 https://udn.com/news/story/6809/4817433 技術 2 404
## 2768 https://udn.com/news/story/6809/4817433 官員 2 404
## 2769 https://udn.com/news/story/6809/4817433 爭議地區 2 404
## 2770 https://udn.com/news/story/6809/4817433 侵犯 2 404
## 2771 https://udn.com/news/story/6809/4817433 威脅 2 404
## 2772 https://udn.com/news/story/6809/4817433 挑釁 2 404
## 2773 https://udn.com/news/story/6809/4817433 活動 2 404
## 2774 https://udn.com/news/story/6809/4817433 破壞 2 404
## 2775 https://udn.com/news/story/6809/4817433 商品 2 404
## 2776 https://udn.com/news/story/6809/4817433 國營企業 2 404
## 2777 https://udn.com/news/story/6809/4817433 基礎 2 404
## 2778 https://udn.com/news/story/6809/4817433 將對 2 404
## 2779 https://udn.com/news/story/6809/4817433 透過 2 404
## 2780 https://udn.com/news/story/6809/4817433 報導 2 404
## 2781 https://udn.com/news/story/6809/4817433 斯里蘭卡 2 404
## 2782 https://udn.com/news/story/6809/4817433 華爾街日報 2 404
## 2783 https://udn.com/news/story/6809/4817433 貸款 2 404
## 2784 https://udn.com/news/story/6809/4817433 超過 2 404
## 2785 https://udn.com/news/story/6809/4817433 盟友 2 404
## 2786 https://udn.com/news/story/6809/4817433 解放軍 2 404
## 2787 https://udn.com/news/story/6809/4817433 漢班 2 404
## 2788 https://udn.com/news/story/6809/4817433 認定 2 404
## 2789 https://udn.com/news/story/6809/4817433 導彈 2 404
## 2790 https://udn.com/news/story/6809/4817433 戰爭 2 404
## 2791 https://udn.com/news/story/6809/4817433 穩定 2 404
## 2792 https://udn.com/news/story/6809/4817433 繼續下去 2 404
## 2793 https://udn.com/news/story/6809/4817433 警告 2 404
## 2794 https://udn.com/news/story/6809/4877676 今天 2 191
## 2795 https://udn.com/news/story/6809/4877676 可能 2 191
## 2796 https://udn.com/news/story/6809/4877676 安約 2 191
## 2797 https://udn.com/news/story/6809/4877676 決議 2 191
## 2798 https://udn.com/news/story/6809/4877676 取消 2 191
## 2799 https://udn.com/news/story/6809/4877676 表示 2 191
## 2800 https://udn.com/news/story/6809/4877676 冠狀病毒 2 191
## 2801 https://udn.com/news/story/6809/4877676 南海 2 191
## 2802 https://udn.com/news/story/6809/4877676 時間 2 191
## 2803 https://udn.com/news/story/6809/4877676 疾病 2 191
## 2804 https://udn.com/news/story/6809/4877676 馬尼拉 2 191
## 2805 https://udn.com/news/story/6809/4877676 掃毒 2 191
## 2806 https://udn.com/news/story/6809/4877676 涵蓋 2 191
## 2807 https://udn.com/news/story/6809/4877676 這項 2 191
## 2808 https://udn.com/news/story/6809/4877676 博賀 2 191
## 2809 https://udn.com/news/story/6809/4877676 普遍性 2 191
## 2810 https://udn.com/news/story/6809/4877676 發展 2 191
## 2811 https://udn.com/news/story/6809/4877676 當局 2 191
## 2812 https://udn.com/news/story/6809/4877676 優惠關稅 2 191
## 2813 https://udn.com/news/story/6809/4877676 總統 2 191
## 2814 https://udn.com/news/story/6809/4877676 總統府 2 191
## 2815 https://udn.com/news/story/6809/4877676 聯合國大會 2 191
## 2816 https://udn.com/news/story/6809/4877676 議題 2 191
## 2817 https://udn.com/news/story/6809/4891329 公里 2 97
## 2818 https://udn.com/news/story/6809/4891329 沿海 2 97
## 2819 https://udn.com/news/story/6809/4891329 指出 2 97
## 2820 https://udn.com/news/story/6809/4891329 派出 2 97
## 2821 https://udn.com/news/story/6809/4891329 美國 2 97
## 2822 https://udn.com/news/story/6809/4891329 軍機 2 97
## 2823 https://udn.com/news/story/6809/4891329 動態 2 97
## 2824 https://udn.com/news/story/6809/4891329 最近 2 97
## 2825 https://udn.com/news/story/6809/4925039 一艘 2 124
## 2826 https://udn.com/news/story/6809/4925039 水域 2 124
## 2827 https://udn.com/news/story/6809/4925039 此次 2 124
## 2828 https://udn.com/news/story/6809/4925039 表示 2 124
## 2829 https://udn.com/news/story/6809/4925039 越南 2 124
## 2830 https://udn.com/news/story/6809/4925039 資源 2 124
## 2831 https://udn.com/news/story/6809/4925039 潛艦 2 124
## 2832 https://udn.com/news/story/6809/4925039 豐富 2 124
## 2833 https://udn.com/news/story/6809/4925039 護衛艦 2 124
## 2834 https://udn.com/news/story/6809/4933721 反潛 2 206
## 2835 https://udn.com/news/story/6809/4933721 方式 2 206
## 2836 https://udn.com/news/story/6809/4933721 生日 2 206
## 2837 https://udn.com/news/story/6809/4933721 安全 2 206
## 2838 https://udn.com/news/story/6809/4933721 表示 2 206
## 2839 https://udn.com/news/story/6809/4933721 南海 2 206
## 2840 https://udn.com/news/story/6809/4933721 持續 2 206
## 2841 https://udn.com/news/story/6809/4933721 美日 2 206
## 2842 https://udn.com/news/story/6809/4933721 致力於 2 206
## 2843 https://udn.com/news/story/6809/4933721 部隊 2 206
## 2844 https://udn.com/news/story/6809/4933721 提升 2 206
## 2845 https://udn.com/news/story/6809/4933721 最大 2 206
## 2846 https://udn.com/news/story/6809/4933721 最好 2 206
## 2847 https://udn.com/news/story/6809/4933721 進行 2 206
## 2848 https://udn.com/news/story/6809/4933721 慶祝 2 206
## 2849 https://udn.com/news/story/6809/4933721 戰備 2 206
## 2850 https://udn.com/news/story/6809/4933721 整合 2 206
## 2851 https://udn.com/news/story/6809/4933721 艦隊 2 206
## 2852 https://udn.com/news/story/6809/4933721 護衛艦 2 206
## 2853 https://udn.com/news/story/6809/4933721 驅逐艦 2 206
## 2854 https://udn.com/news/story/6809/4934837 一些 2 298
## 2855 https://udn.com/news/story/6809/4934837 外長 2 298
## 2856 https://udn.com/news/story/6809/4934837 印度洋 2 298
## 2857 https://udn.com/news/story/6809/4934837 兩國 2 298
## 2858 https://udn.com/news/story/6809/4934837 表示 2 298
## 2859 https://udn.com/news/story/6809/4934837 指出 2 298
## 2860 https://udn.com/news/story/6809/4934837 挑釁 2 298
## 2861 https://udn.com/news/story/6809/4934837 政客 2 298
## 2862 https://udn.com/news/story/6809/4934837 活動 2 298
## 2863 https://udn.com/news/story/6809/4934837 突然 2 298
## 2864 https://udn.com/news/story/6809/4934837 軍艦 2 298
## 2865 https://udn.com/news/story/6809/4934837 消息 2 298
## 2866 https://udn.com/news/story/6809/4934837 病人 2 298
## 2867 https://udn.com/news/story/6809/4934837 訓練 2 298
## 2868 https://udn.com/news/story/6809/4934837 堅定 2 298
## 2869 https://udn.com/news/story/6809/4934837 掉頭 2 298
## 2870 https://udn.com/news/story/6809/4934837 進行 2 298
## 2871 https://udn.com/news/story/6809/4934837 頻繁 2 298
## 2872 https://udn.com/news/story/6809/4934837 關係 2 298
## 2873 https://udn.com/news/story/6809/4934837 艦員 2 298
## 2874 https://udn.com/news/story/6809/4939570 太平洋 2 203
## 2875 https://udn.com/news/story/6809/4939570 包括 2 203
## 2876 https://udn.com/news/story/6809/4939570 合作 2 203
## 2877 https://udn.com/news/story/6809/4939570 巡洋艦 2 203
## 2878 https://udn.com/news/story/6809/4939570 快速反應 2 203
## 2879 https://udn.com/news/story/6809/4939570 突發事件 2 203
## 2880 https://udn.com/news/story/6809/4939570 航空母艦 2 203
## 2881 https://udn.com/news/story/6809/4939570 透過 2 203
## 2882 https://udn.com/news/story/6809/4939570 部隊 2 203
## 2883 https://udn.com/news/story/6809/4939570 進行 2 203
## 2884 https://udn.com/news/story/6809/4939570 維護 2 203
## 2885 https://udn.com/news/story/6809/4939570 導向飛彈 2 203
## 2886 https://udn.com/news/story/6809/4939570 戰鬥機 2 203
## 2887 https://udn.com/news/story/6809/4939570 聯隊 2 203
## 2888 https://udn.com/news/story/6809/4939570 艦隊 2 203
## 2889 https://udn.com/news/story/6809/4939570 驅逐艦 2 203
## 2890 https://udn.com/news/story/6809/4947150 大陸 2 38
## 2891 https://udn.com/news/story/6809/4947150 菅義偉 2 38
## 2892 https://udn.com/news/story/6809/4947150 議題 2 38
## 2893 https://udn.com/news/story/6809/5063760 反而 2 450
## 2894 https://udn.com/news/story/6809/5063760 出現 2 450
## 2895 https://udn.com/news/story/6809/5063760 可能 2 450
## 2896 https://udn.com/news/story/6809/5063760 本身 2 450
## 2897 https://udn.com/news/story/6809/5063760 交代 2 450
## 2898 https://udn.com/news/story/6809/5063760 有所 2 450
## 2899 https://udn.com/news/story/6809/5063760 此種 2 450
## 2900 https://udn.com/news/story/6809/5063760 更加 2 450
## 2901 https://udn.com/news/story/6809/5063760 來說 2 450
## 2902 https://udn.com/news/story/6809/5063760 刻意 2 450
## 2903 https://udn.com/news/story/6809/5063760 官兵 2 450
## 2904 https://udn.com/news/story/6809/5063760 居然 2 450
## 2905 https://udn.com/news/story/6809/5063760 狀況 2 450
## 2906 https://udn.com/news/story/6809/5063760 社群 2 450
## 2907 https://udn.com/news/story/6809/5063760 挑起 2 450
## 2908 https://udn.com/news/story/6809/5063760 活動 2 450
## 2909 https://udn.com/news/story/6809/5063760 相當程度 2 450
## 2910 https://udn.com/news/story/6809/5063760 研究 2 450
## 2911 https://udn.com/news/story/6809/5063760 紀錄 2 450
## 2912 https://udn.com/news/story/6809/5063760 效果 2 450
## 2913 https://udn.com/news/story/6809/5063760 海軍 2 450
## 2914 https://udn.com/news/story/6809/5063760 能夠 2 450
## 2915 https://udn.com/news/story/6809/5063760 航行 2 450
## 2916 https://udn.com/news/story/6809/5063760 高層 2 450
## 2917 https://udn.com/news/story/6809/5063760 專屬 2 450
## 2918 https://udn.com/news/story/6809/5063760 勤務 2 450
## 2919 https://udn.com/news/story/6809/5063760 該項 2 450
## 2920 https://udn.com/news/story/6809/5063760 過程 2 450
## 2921 https://udn.com/news/story/6809/5063760 對立 2 450
## 2922 https://udn.com/news/story/6809/5063760 網頁 2 450
## 2923 https://udn.com/news/story/6809/5063760 獲得 2 450
## 2924 https://udn.com/news/story/6809/5063760 避免 2 450
## 2925 https://udn.com/news/story/6809/5063760 讀者 2 450
## 2926 https://udn.com/news/story/6809/5123283 文章 2 319
## 2927 https://udn.com/news/story/6809/5123283 目前 2 319
## 2928 https://udn.com/news/story/6809/5123283 合作 2 319
## 2929 https://udn.com/news/story/6809/5123283 成為 2 319
## 2930 https://udn.com/news/story/6809/5123283 巡弋 2 319
## 2931 https://udn.com/news/story/6809/5123283 改變 2 319
## 2932 https://udn.com/news/story/6809/5123283 俄羅斯 2 319
## 2933 https://udn.com/news/story/6809/5123283 射程 2 319
## 2934 https://udn.com/news/story/6809/5123283 峰會 2 319
## 2935 https://udn.com/news/story/6809/5123283 海軍 2 319
## 2936 https://udn.com/news/story/6809/5123283 喜馬拉雅山 2 319
## 2937 https://udn.com/news/story/6809/5123283 報導 2 319
## 2938 https://udn.com/news/story/6809/5123283 媒體 2 319
## 2939 https://udn.com/news/story/6809/5123283 提供 2 319
## 2940 https://udn.com/news/story/6809/5123283 最終 2 319
## 2941 https://udn.com/news/story/6809/5123283 焦點 2 319
## 2942 https://udn.com/news/story/6809/5123283 發射 2 319
## 2943 https://udn.com/news/story/6809/5123283 視訊 2 319
## 2944 https://udn.com/news/story/6809/5123283 超音速 2 319
## 2945 https://udn.com/news/story/6809/5123283 新德里 2 319
## 2946 https://udn.com/news/story/6809/5123283 對峙 2 319
## 2947 https://udn.com/news/story/6809/5123283 範圍 2 319
## 2948 https://udn.com/news/story/6809/5123283 戰略 2 319
## 2949 https://udn.com/news/story/6809/5123283 擁有 2 319
## 2950 https://udn.com/news/story/6809/5123283 優勢 2 319
## 2951 https://udn.com/news/story/6809/5123283 總理 2 319
## 2952 https://udn.com/news/story/6809/5123283 雙方 2 319
## 2953 https://udn.com/news/story/6809/5123283 邊境 2 319
## 2954 https://udn.com/news/story/6809/5217307 中國 2 66
## 2955 https://udn.com/news/story/6809/5217307 打擊 2 66
## 2956 https://udn.com/news/story/6809/5217307 表示 2 66
## 2957 https://udn.com/news/story/6809/5217307 飛機 2 66
## 2958 https://udn.com/news/story/6809/5217307 航空母艦 2 66
## 2959 https://udn.com/news/story/6809/5217307 船艦 2 66
## 2960 https://udn.com/news/story/6809/5217399 不曾 2 102
## 2961 https://udn.com/news/story/6809/5217399 中國 2 102
## 2962 https://udn.com/news/story/6809/5217399 太平洋 2 102
## 2963 https://udn.com/news/story/6809/5217399 司令部 2 102
## 2964 https://udn.com/news/story/6809/5217399 打擊 2 102
## 2965 https://udn.com/news/story/6809/5217399 表示 2 102
## 2966 https://udn.com/news/story/6809/5217399 南海 2 102
## 2967 https://udn.com/news/story/6809/5217399 美軍 2 102
## 2968 https://udn.com/news/story/6809/5217399 重申 2 102
## 2969 https://udn.com/news/story/6809/5217399 飛機 2 102
## 2970 https://udn.com/news/story/6809/5217399 航行 2 102
## 2971 https://udn.com/news/story/6809/5217399 航空母艦 2 102
## 2972 https://udn.com/news/story/6809/5217399 進入 2 102
## 2973 https://udn.com/news/story/6809/5217399 艦艇 2 102
## 2974 https://udn.com/news/story/6809/5225330 人士 2 260
## 2975 https://udn.com/news/story/6809/5225330 中共 2 260
## 2976 https://udn.com/news/story/6809/5225330 引述 2 260
## 2977 https://udn.com/news/story/6809/5225330 外部 2 260
## 2978 https://udn.com/news/story/6809/5225330 目標 2 260
## 2979 https://udn.com/news/story/6809/5225330 西方 2 260
## 2980 https://udn.com/news/story/6809/5225330 知情 2 260
## 2981 https://udn.com/news/story/6809/5225330 表示 2 260
## 2982 https://udn.com/news/story/6809/5225330 軍事 2 260
## 2983 https://udn.com/news/story/6809/5225330 飛行 2 260
## 2984 https://udn.com/news/story/6809/5225330 飛行員 2 260
## 2985 https://udn.com/news/story/6809/5225330 容易 2 260
## 2986 https://udn.com/news/story/6809/5225330 特殊 2 260
## 2987 https://udn.com/news/story/6809/5225330 航空母艦 2 260
## 2988 https://udn.com/news/story/6809/5225330 針對 2 260
## 2989 https://udn.com/news/story/6809/5225330 執行 2 260
## 2990 https://udn.com/news/story/6809/5225330 通訊 2 260
## 2991 https://udn.com/news/story/6809/5225330 通常 2 260
## 2992 https://udn.com/news/story/6809/5225330 報導 2 260
## 2993 https://udn.com/news/story/6809/5225330 提出 2 260
## 2994 https://udn.com/news/story/6809/5225330 無法 2 260
## 2995 https://udn.com/news/story/6809/5225330 對此 2 260
## 2996 https://udn.com/news/story/6809/5225330 對話 2 260
## 2997 https://udn.com/news/story/6809/5225330 監聽 2 260
## 2998 https://udn.com/news/story/6809/5225330 說法 2 260
## 2999 https://udn.com/news/story/6809/5225330 確認 2 260
## 3000 https://udn.com/news/story/6809/5225330 質疑 2 260
## 3001 https://udn.com/news/story/6809/5225330 環時 2 260
## 3002 https://udn.com/news/story/6809/5225330 聽到 2 260
## 3003 https://udn.com/news/story/6809/5255445 允許 2 211
## 3004 https://udn.com/news/story/6809/5255445 安全 2 211
## 3005 https://udn.com/news/story/6809/5255445 威脅 2 211
## 3006 https://udn.com/news/story/6809/5255445 美軍 2 211
## 3007 https://udn.com/news/story/6809/5255445 軍艦 2 211
## 3008 https://udn.com/news/story/6809/5255445 飛行 2 211
## 3009 https://udn.com/news/story/6809/5255445 捍衛 2 211
## 3010 https://udn.com/news/story/6809/5255445 時間 2 211
## 3011 https://udn.com/news/story/6809/5255445 海軍 2 211
## 3012 https://udn.com/news/story/6809/5255445 國際 2 211
## 3013 https://udn.com/news/story/6809/5255445 提出 2 211
## 3014 https://udn.com/news/story/6809/5255445 當地 2 211
## 3015 https://udn.com/news/story/6809/5255445 過度 2 211
## 3016 https://udn.com/news/story/6809/5255445 領海 2 211
## 3017 https://udn.com/news/story/6809/5255445 質疑 2 211
## 3018 https://udn.com/news/story/6809/5255445 繁榮 2 211
## 3019 https://udn.com/news/story/6809/5263091 中方 2 376
## 3020 https://udn.com/news/story/6809/5263091 主權 2 376
## 3021 https://udn.com/news/story/6809/5263091 他國 2 376
## 3022 https://udn.com/news/story/6809/5263091 北京 2 376
## 3023 https://udn.com/news/story/6809/5263091 外海 2 376
## 3024 https://udn.com/news/story/6809/5263091 示威者 2 376
## 3025 https://udn.com/news/story/6809/5263091 仲裁 2 376
## 3026 https://udn.com/news/story/6809/5263091 合法 2 376
## 3027 https://udn.com/news/story/6809/5263091 承諾 2 376
## 3028 https://udn.com/news/story/6809/5263091 爭端 2 376
## 3029 https://udn.com/news/story/6809/5263091 爭議 2 376
## 3030 https://udn.com/news/story/6809/5263091 挑戰 2 376
## 3031 https://udn.com/news/story/6809/5263091 重申 2 376
## 3032 https://udn.com/news/story/6809/5263091 首度 2 376
## 3033 https://udn.com/news/story/6809/5263091 海事 2 376
## 3034 https://udn.com/news/story/6809/5263091 記者會 2 376
## 3035 https://udn.com/news/story/6809/5263091 國務院 2 376
## 3036 https://udn.com/news/story/6809/5263091 堅定 2 376
## 3037 https://udn.com/news/story/6809/5263091 強烈 2 376
## 3038 https://udn.com/news/story/6809/5263091 授權 2 376
## 3039 https://udn.com/news/story/6809/5263091 控制 2 376
## 3040 https://udn.com/news/story/6809/5263091 提出 2 376
## 3041 https://udn.com/news/story/6809/5263091 敦促 2 376
## 3042 https://udn.com/news/story/6809/5263091 結構 2 376
## 3043 https://udn.com/news/story/6809/5263091 進行 2 376
## 3044 https://udn.com/news/story/6809/5263091 暗示 2 376
## 3045 https://udn.com/news/story/6809/5263091 資源 2 376
## 3046 https://udn.com/news/story/6809/5263091 摧毀 2 376
## 3047 https://udn.com/news/story/6809/5263091 領土 2 376
## 3048 https://udn.com/news/story/6809/5263091 履行 2 376
## 3049 https://udn.com/news/story/6809/5263091 鄰國 2 376
## 3050 https://udn.com/news/story/6809/5263091 據此 2 376
## 3051 https://udn.com/news/story/6809/5263091 聯合國 2 376
## 3052 https://udn.com/news/story/6809/5263091 龐培 2 376
## 3053 https://udn.com/news/story/6809/5352633 也許 2 205
## 3054 https://udn.com/news/story/6809/5352633 中國 2 205
## 3055 https://udn.com/news/story/6809/5352633 主權 2 205
## 3056 https://udn.com/news/story/6809/5352633 凸顯 2 205
## 3057 https://udn.com/news/story/6809/5352633 可能 2 205
## 3058 https://udn.com/news/story/6809/5352633 托里 2 205
## 3059 https://udn.com/news/story/6809/5352633 考慮 2 205
## 3060 https://udn.com/news/story/6809/5352633 防禦 2 205
## 3061 https://udn.com/news/story/6809/5352633 協議 2 205
## 3062 https://udn.com/news/story/6809/5352633 研究 2 205
## 3063 https://udn.com/news/story/6809/5352633 美國 2 205
## 3064 https://udn.com/news/story/6809/5352633 軍演 2 205
## 3065 https://udn.com/news/story/6809/5352633 海岸 2 205
## 3066 https://udn.com/news/story/6809/5352633 海軍 2 205
## 3067 https://udn.com/news/story/6809/5352633 國防 2 205
## 3068 https://udn.com/news/story/6809/5352633 設備 2 205
## 3069 https://udn.com/news/story/6809/5352633 舉行 2 205
## 3070 https://udn.com/news/story/6809/5352633 警衛隊 2 205
## 3071 https://udn.com/news/story/6809/5365698 大使館 2 186
## 3072 https://udn.com/news/story/6809/5365698 今天 2 186
## 3073 https://udn.com/news/story/6809/5365698 占領 2 186
## 3074 https://udn.com/news/story/6809/5365698 民兵 2 186
## 3075 https://udn.com/news/story/6809/5365698 表示 2 186
## 3076 https://udn.com/news/story/6809/5365698 要求 2 186
## 3077 https://udn.com/news/story/6809/5365698 重要 2 186
## 3078 https://udn.com/news/story/6809/5365698 海上 2 186
## 3079 https://udn.com/news/story/6809/5365698 停泊 2 186
## 3080 https://udn.com/news/story/6809/5365698 進一步 2 186
## 3081 https://udn.com/news/story/6809/5365698 集結 2 186
## 3082 https://udn.com/news/story/6809/5365698 當地 2 186
## 3083 https://udn.com/news/story/6809/5365698 說法 2 186
## 3084 https://udn.com/news/story/6809/5367370 大量 2 239
## 3085 https://udn.com/news/story/6809/5367370 中業島 2 239
## 3086 https://udn.com/news/story/6809/5367370 反映 2 239
## 3087 https://udn.com/news/story/6809/5367370 手段 2 239
## 3088 https://udn.com/news/story/6809/5367370 主權 2 239
## 3089 https://udn.com/news/story/6809/5367370 外交 2 239
## 3090 https://udn.com/news/story/6809/5367370 目標 2 239
## 3091 https://udn.com/news/story/6809/5367370 此事 2 239
## 3092 https://udn.com/news/story/6809/5367370 似乎 2 239
## 3093 https://udn.com/news/story/6809/5367370 直指 2 239
## 3094 https://udn.com/news/story/6809/5367370 附近 2 239
## 3095 https://udn.com/news/story/6809/5367370 指出 2 239
## 3096 https://udn.com/news/story/6809/5367370 風暴 2 239
## 3097 https://udn.com/news/story/6809/5367370 控制 2 239
## 3098 https://udn.com/news/story/6809/5367370 陰險 2 239
## 3099 https://udn.com/news/story/6809/5367370 智庫 2 239
## 3100 https://udn.com/news/story/6809/5367370 無法 2 239
## 3101 https://udn.com/news/story/6809/5367370 越來越 2 239
## 3102 https://udn.com/news/story/6809/5367370 躲避 2 239
## 3103 https://udn.com/news/story/6809/5367370 漁船 2 239
## 3104 https://udn.com/news/story/6809/5367370 聚集 2 239
## 3105 https://udn.com/news/story/6809/5367370 衛星 2 239
## 3106 https://udn.com/news/story/6809/5367370 駛離 2 239
## 3107 https://udn.com/news/story/6809/5369418 中國外交部 2 222
## 3108 https://udn.com/news/story/6809/5369418 今天 2 222
## 3109 https://udn.com/news/story/6809/5369418 占領 2 222
## 3110 https://udn.com/news/story/6809/5369418 民兵 2 222
## 3111 https://udn.com/news/story/6809/5369418 立即 2 222
## 3112 https://udn.com/news/story/6809/5369418 多艘 2 222
## 3113 https://udn.com/news/story/6809/5369418 那裡 2 222
## 3114 https://udn.com/news/story/6809/5369418 和平 2 222
## 3115 https://udn.com/news/story/6809/5369418 炒作 2 222
## 3116 https://udn.com/news/story/6809/5369418 非法 2 222
## 3117 https://udn.com/news/story/6809/5369418 要求 2 222
## 3118 https://udn.com/news/story/6809/5369418 倫沙納 2 222
## 3119 https://udn.com/news/story/6809/5369418 海軍 2 222
## 3120 https://udn.com/news/story/6809/5369418 停止 2 222
## 3121 https://udn.com/news/story/6809/5369418 參加 2 222
## 3122 https://udn.com/news/story/6809/5369418 無端 2 222
## 3123 https://udn.com/news/story/6809/5369418 菲方 2 222
## 3124 https://udn.com/news/story/6809/5369418 漁船 2 222
## 3125 https://udn.com/news/story/6809/5369418 認為 2 222
## 3126 https://udn.com/news/story/6809/5369418 據點 2 222
## 3127 https://udn.com/news/story/6809/5369418 應詢 2 222
## 3128 https://udn.com/news/story/6809/5369418 應該 2 222
## 3129 https://udn.com/news/story/6809/5369418 聲稱 2 222
## 3130 https://udn.com/news/story/6809/5369418 穩定 2 222
## 3131 https://udn.com/news/story/6809/5370058 引發 2 211
## 3132 https://udn.com/news/story/6809/5370058 朱利安 2 211
## 3133 https://udn.com/news/story/6809/5370058 佩礁 2 211
## 3134 https://udn.com/news/story/6809/5370058 尚未 2 211
## 3135 https://udn.com/news/story/6809/5370058 承諾 2 211
## 3136 https://udn.com/news/story/6809/5370058 持續 2 211
## 3137 https://udn.com/news/story/6809/5370058 昨天 2 211
## 3138 https://udn.com/news/story/6809/5370058 停留 2 211
## 3139 https://udn.com/news/story/6809/5370058 透過 2 211
## 3140 https://udn.com/news/story/6809/5370058 發言人 2 211
## 3141 https://udn.com/news/story/6809/5370058 菲利 2 211
## 3142 https://udn.com/news/story/6809/5370058 萬劑 2 211
## 3143 https://udn.com/news/story/6809/5370058 聲明 2 211
## 3144 https://udn.com/news/story/6809/5376403 尤其 2 312
## 3145 https://udn.com/news/story/6809/5376403 支隊 2 312
## 3146 https://udn.com/news/story/6809/5376403 北京 2 312
## 3147 https://udn.com/news/story/6809/5376403 台灣 2 312
## 3148 https://udn.com/news/story/6809/5376403 地區 2 312
## 3149 https://udn.com/news/story/6809/5376403 此舉 2 312
## 3150 https://udn.com/news/story/6809/5376403 行動 2 312
## 3151 https://udn.com/news/story/6809/5376403 宋忠平 2 312
## 3152 https://udn.com/news/story/6809/5376403 攻擊 2 312
## 3153 https://udn.com/news/story/6809/5376403 官兵 2 312
## 3154 https://udn.com/news/story/6809/5376403 附近 2 312
## 3155 https://udn.com/news/story/6809/5376403 待命 2 312
## 3156 https://udn.com/news/story/6809/5376403 拜登 2 312
## 3157 https://udn.com/news/story/6809/5376403 持續 2 312
## 3158 https://udn.com/news/story/6809/5376403 昨天 2 312
## 3159 https://udn.com/news/story/6809/5376403 活動 2 312
## 3160 https://udn.com/news/story/6809/5376403 海峽 2 312
## 3161 https://udn.com/news/story/6809/5376403 執政 2 312
## 3162 https://udn.com/news/story/6809/5376403 第七 2 312
## 3163 https://udn.com/news/story/6809/5376403 許瑞麟 2 312
## 3164 https://udn.com/news/story/6809/5376403 報導 2 312
## 3165 https://udn.com/news/story/6809/5376403 照片 2 312
## 3166 https://udn.com/news/story/6809/5376403 當局 2 312
## 3167 https://udn.com/news/story/6809/5376403 聖地牙哥 2 312
## 3168 https://udn.com/news/story/6809/5376403 實彈 2 312
## 3169 https://udn.com/news/story/6809/5376403 演訓 2 312
## 3170 https://udn.com/news/story/6809/5376403 演習 2 312
## 3171 https://udn.com/news/story/6809/5376403 緊張 2 312
## 3172 https://udn.com/news/story/6809/5376403 駛經 2 312
## 3173 https://udn.com/news/story/6809/5376403 總統 2 312
## 3174 https://udn.com/news/story/6809/5376403 還說 2 312
## 3175 https://udn.com/news/story/6809/5376403 羅斯福 2 312
## 3176 https://udn.com/news/story/6809/5381036 士兵 2 206
## 3177 https://udn.com/news/story/6809/5381036 中國 2 206
## 3178 https://udn.com/news/story/6809/5381036 互訪 2 206
## 3179 https://udn.com/news/story/6809/5381036 今天 2 206
## 3180 https://udn.com/news/story/6809/5381036 召開 2 206
## 3181 https://udn.com/news/story/6809/5381036 希望 2 206
## 3182 https://udn.com/news/story/6809/5381036 防長 2 206
## 3183 https://udn.com/news/story/6809/5381036 兩人 2 206
## 3184 https://udn.com/news/story/6809/5381036 兩國 2 206
## 3185 https://udn.com/news/story/6809/5381036 表達 2 206
## 3186 https://udn.com/news/story/6809/5381036 近期 2 206
## 3187 https://udn.com/news/story/6809/5381036 南海 2 206
## 3188 https://udn.com/news/story/6809/5381036 美軍 2 206
## 3189 https://udn.com/news/story/6809/5381036 軍隊 2 206
## 3190 https://udn.com/news/story/6809/5381036 軍演 2 206
## 3191 https://udn.com/news/story/6809/5381036 倫沙納 2 206
## 3192 https://udn.com/news/story/6809/5381036 索貝哈 2 206
## 3193 https://udn.com/news/story/6809/5381036 討論 2 206
## 3194 https://udn.com/news/story/6809/5381036 國防部 2 206
## 3195 https://udn.com/news/story/6809/5381036 程度 2 206
## 3196 https://udn.com/news/story/6809/5381036 電話會議 2 206
## 3197 https://udn.com/news/story/6809/5381036 聲明 2 206
## 3198 https://udn.com/news/story/6809/5400212 只會 2 168
## 3199 https://udn.com/news/story/6809/5400212 石油 2 168
## 3200 https://udn.com/news/story/6809/5400212 收場 2 168
## 3201 https://udn.com/news/story/6809/5400212 我將 2 168
## 3202 https://udn.com/news/story/6809/5400212 那裡 2 168
## 3203 https://udn.com/news/story/6809/5400212 捕魚 2 168
## 3204 https://udn.com/news/story/6809/5400212 現在 2 168
## 3205 https://udn.com/news/story/6809/5400212 船隻 2 168
## 3206 https://udn.com/news/story/6809/5400212 擁有 2 168
## 3207 https://udn.com/news/story/6809/5400212 講到 2 168
## 3208 https://udn.com/news/story/6811/4675655 不要 2 142
## 3209 https://udn.com/news/story/6811/4675655 加劇 2 142
## 3210 https://udn.com/news/story/6811/4675655 西沙 2 142
## 3211 https://udn.com/news/story/6811/4675655 爭議 2 142
## 3212 https://udn.com/news/story/6811/4675655 活動 2 142
## 3213 https://udn.com/news/story/6811/4675655 美國 2 142
## 3214 https://udn.com/news/story/6811/4675655 區域 2 142
## 3215 https://udn.com/news/story/6811/4675655 敦促 2 142
## 3216 https://udn.com/news/story/6811/4675655 進一步 2 142
## 3217 https://udn.com/news/story/6811/4675655 群島 2 142
## 3218 https://udn.com/news/story/6811/4675655 實施 2 142
## 3219 https://udn.com/news/story/6811/4675655 領土 2 142
## 3220 https://udn.com/news/story/6811/4675655 影響 2 142
## 3221 https://udn.com/news/story/6811/4675655 數據 2 142
## 3222 https://udn.com/news/story/6811/4675655 鄰國 2 142
## 3223 https://udn.com/news/story/6811/4812524 入境 2 266
## 3224 https://udn.com/news/story/6811/4812524 中共 2 266
## 3225 https://udn.com/news/story/6811/4812524 公司 2 266
## 3226 https://udn.com/news/story/6811/4812524 主張 2 266
## 3227 https://udn.com/news/story/6811/4812524 正式 2 266
## 3228 https://udn.com/news/story/6811/4812524 交通 2 266
## 3229 https://udn.com/news/story/6811/4812524 企業 2 266
## 3230 https://udn.com/news/story/6811/4812524 地物 2 266
## 3231 https://udn.com/news/story/6811/4812524 自由 2 266
## 3232 https://udn.com/news/story/6811/4812524 協助 2 266
## 3233 https://udn.com/news/story/6811/4812524 直系親屬 2 266
## 3234 https://udn.com/news/story/6811/4812524 表示 2 266
## 3235 https://udn.com/news/story/6811/4812524 宣布 2 266
## 3236 https://udn.com/news/story/6811/4812524 建設 2 266
## 3237 https://udn.com/news/story/6811/4812524 指出 2 266
## 3238 https://udn.com/news/story/6811/4812524 美國商務部 2 266
## 3239 https://udn.com/news/story/6811/4812524 限制 2 266
## 3240 https://udn.com/news/story/6811/4812524 商務部 2 266
## 3241 https://udn.com/news/story/6811/4812524 國際 2 266
## 3242 https://udn.com/news/story/6811/4812524 祭出 2 266
## 3243 https://udn.com/news/story/6811/4812524 造島 2 266
## 3244 https://udn.com/news/story/6811/4812524 新聞稿 2 266
## 3245 https://udn.com/news/story/6811/4812524 禁止 2 266
## 3246 https://udn.com/news/story/6811/4812524 旗下 2 266
## 3247 https://udn.com/news/story/6811/4812524 簽證 2 266
## 3248 https://udn.com/news/story/6811/4812524 譴責 2 266
## 3249 https://udn.com/news/story/6811/4812588 上海 2 162
## 3250 https://udn.com/news/story/6811/4812588 工程 2 162
## 3251 https://udn.com/news/story/6811/4812588 技術 2 162
## 3252 https://udn.com/news/story/6811/4812588 表示 2 162
## 3253 https://udn.com/news/story/6811/4812588 南海 2 162
## 3254 https://udn.com/news/story/6811/4812588 建設 2 162
## 3255 https://udn.com/news/story/6811/4812588 美國 2 162
## 3256 https://udn.com/news/story/6811/4812588 軍事 2 162
## 3257 https://udn.com/news/story/6811/4812588 參與 2 162
## 3258 https://udn.com/news/story/6811/4812588 集團 2 162
## 3259 https://udn.com/news/story/6811/4812588 電子技術 2 162
## 3260 https://udn.com/news/story/6811/4812588 實體 2 162
## 3261 https://udn.com/news/story/6811/4812588 管制 2 162
## 3262 https://udn.com/news/story/6811/4812588 增列 2 162
## 3263 https://udn.com/news/story/6811/4812588 聲明 2 162
## 3264 https://udn.com/news/story/6813/4542826 今天 2 202
## 3265 https://udn.com/news/story/6813/4542826 北京 2 202
## 3266 https://udn.com/news/story/6813/4542826 目前 2 202
## 3267 https://udn.com/news/story/6813/4542826 全球 2 202
## 3268 https://udn.com/news/story/6813/4542826 自由 2 202
## 3269 https://udn.com/news/story/6813/4542826 自由行動 2 202
## 3270 https://udn.com/news/story/6813/4542826 所有 2 202
## 3271 https://udn.com/news/story/6813/4542826 明確 2 202
## 3272 https://udn.com/news/story/6813/4542826 肺炎 2 202
## 3273 https://udn.com/news/story/6813/4542826 信號 2 202
## 3274 https://udn.com/news/story/6813/4542826 持續 2 202
## 3275 https://udn.com/news/story/6813/4542826 是否 2 202
## 3276 https://udn.com/news/story/6813/4542826 疫情 2 202
## 3277 https://udn.com/news/story/6813/4542826 美軍 2 202
## 3278 https://udn.com/news/story/6813/4542826 致力於 2 202
## 3279 https://udn.com/news/story/6813/4542826 軍艦 2 202
## 3280 https://udn.com/news/story/6813/4542826 記者會 2 202
## 3281 https://udn.com/news/story/6813/4542826 起源 2 202
## 3282 https://udn.com/news/story/6813/4542826 商業 2 202
## 3283 https://udn.com/news/story/6813/4542826 發出 2 202
## 3284 https://udn.com/news/story/6813/4542826 圖表 2 202
## 3285 https://udn.com/news/story/6813/4542826 數據 2 202
## 3286 https://udn.com/news/story/6813/4542826 確保 2 202
## 3287 https://udn.com/news/story/6813/4542826 顯示 2 202
## 3288 https://udn.com/news/story/6813/4693835 下週 2 111
## 3289 https://udn.com/news/story/6813/4693835 川普 2 111
## 3290 https://udn.com/news/story/6813/4693835 政府 2 111
## 3291 https://udn.com/news/story/6813/4693835 疫情 2 111
## 3292 https://udn.com/news/story/6813/4693835 美方 2 111
## 3293 https://udn.com/news/story/6813/4693835 計劃 2 111
## 3294 https://udn.com/news/story/6813/4693835 數據 2 111
## 3295 https://udn.com/news/story/6813/4693835 舉行 2 111
## 3296 https://udn.com/news/story/6813/4693835 雙方 2 111
## 3297 https://udn.com/news/story/6813/4720296 共同利益 2 133
## 3298 https://udn.com/news/story/6813/4720296 危機 2 133
## 3299 https://udn.com/news/story/6813/4720296 希望 2 133
## 3300 https://udn.com/news/story/6813/4720296 表示 2 133
## 3301 https://udn.com/news/story/6813/4720296 軍演 2 133
## 3302 https://udn.com/news/story/6813/4720296 區域 2 133
## 3303 https://udn.com/news/story/6813/4720296 國防部長 2 133
## 3304 https://udn.com/news/story/6813/4720296 國際 2 133
## 3305 https://udn.com/news/story/6813/4720296 訪問 2 133
## 3306 https://udn.com/news/story/6813/4720296 報導 2 133
## 3307 https://udn.com/news/story/6813/4720296 溝通 2 133
## 3308 https://udn.com/news/story/6813/4720296 路透 2 133
## 3309 https://udn.com/news/story/6813/4720296 管道 2 133
## 3310 https://udn.com/news/story/6813/4720296 數據 2 133
## 3311 https://udn.com/news/story/6813/5002062 大選 2 258
## 3312 https://udn.com/news/story/6813/5002062 小時 2 258
## 3313 https://udn.com/news/story/6813/5002062 巴馬 2 258
## 3314 https://udn.com/news/story/6813/5002062 台灣 2 258
## 3315 https://udn.com/news/story/6813/5002062 交流 2 258
## 3316 https://udn.com/news/story/6813/5002062 任內 2 258
## 3317 https://udn.com/news/story/6813/5002062 安全 2 258
## 3318 https://udn.com/news/story/6813/5002062 助理 2 258
## 3319 https://udn.com/news/story/6813/5002062 宋文笛 2 258
## 3320 https://udn.com/news/story/6813/5002062 亞洲 2 258
## 3321 https://udn.com/news/story/6813/5002062 所有 2 258
## 3322 https://udn.com/news/story/6813/5002062 威懾 2 258
## 3323 https://udn.com/news/story/6813/5002062 指出 2 258
## 3324 https://udn.com/news/story/6813/5002062 政府 2 258
## 3325 https://udn.com/news/story/6813/5002062 政策 2 258
## 3326 https://udn.com/news/story/6813/5002062 相信 2 258
## 3327 https://udn.com/news/story/6813/5002062 研究 2 258
## 3328 https://udn.com/news/story/6813/5002062 美軍 2 258
## 3329 https://udn.com/news/story/6813/5002062 英文 2 258
## 3330 https://udn.com/news/story/6813/5002062 軍事 2 258
## 3331 https://udn.com/news/story/6813/5002062 重要 2 258
## 3332 https://udn.com/news/story/6813/5002062 風險 2 258
## 3333 https://udn.com/news/story/6813/5002062 商船 2 258
## 3334 https://udn.com/news/story/6813/5002062 國務卿 2 258
## 3335 https://udn.com/news/story/6813/5002062 國際 2 258
## 3336 https://udn.com/news/story/6813/5002062 智庫 2 258
## 3337 https://udn.com/news/story/6813/5002062 勢力 2 258
## 3338 https://udn.com/news/story/6813/5002062 戰略 2 258
## 3339 https://udn.com/news/story/6813/5002062 擊沉 2 258
## 3340 https://udn.com/news/story/6813/5200106 中國 2 162
## 3341 https://udn.com/news/story/6813/5200106 司令部 2 162
## 3342 https://udn.com/news/story/6813/5200106 任務 2 162
## 3343 https://udn.com/news/story/6813/5200106 全球 2 162
## 3344 https://udn.com/news/story/6813/5200106 印太 2 162
## 3345 https://udn.com/news/story/6813/5200106 安心 2 162
## 3346 https://udn.com/news/story/6813/5200106 西南 2 162
## 3347 https://udn.com/news/story/6813/5200106 防空 2 162
## 3348 https://udn.com/news/story/6813/5200106 例行 2 162
## 3349 https://udn.com/news/story/6813/5200106 昨天 2 162
## 3350 https://udn.com/news/story/6813/5200106 美國 2 162
## 3351 https://udn.com/news/story/6813/5200106 韋瑞西 2 162
## 3352 https://udn.com/news/story/6813/5200106 秩序 2 162
## 3353 https://udn.com/news/story/6813/5200106 執行 2 162
## 3354 https://udn.com/news/story/6813/5200106 進入 2 162
## 3355 https://udn.com/news/story/6813/5200106 盟邦 2 162
## 3356 https://udn.com/news/story/6813/5200106 導向飛彈 2 162
## 3357 https://udn.com/news/story/6813/5200106 聲明 2 162
## 3358 https://udn.com/news/story/6813/5200106 識別區 2 162
## 3359 https://udn.com/news/story/6813/5244746 主張 2 166
## 3360 https://udn.com/news/story/6813/5244746 主權 2 166
## 3361 https://udn.com/news/story/6813/5244746 以來 2 166
## 3362 https://udn.com/news/story/6813/5244746 尼米茲 2 166
## 3363 https://udn.com/news/story/6813/5244746 任務 2 166
## 3364 https://udn.com/news/story/6813/5244746 兩支 2 166
## 3365 https://udn.com/news/story/6813/5244746 表示 2 166
## 3366 https://udn.com/news/story/6813/5244746 指控 2 166
## 3367 https://udn.com/news/story/6813/5244746 首次 2 166
## 3368 https://udn.com/news/story/6813/5244746 航艦 2 166
## 3369 https://udn.com/news/story/6813/5244746 執行 2 166
## 3370 https://udn.com/news/story/6813/5244746 這是 2 166
## 3371 https://udn.com/news/story/6813/5244746 緊張 2 166
## 3372 https://udn.com/news/story/6813/5244746 數日 2 166
## 3373 https://udn.com/news/story/6813/5244746 鄰國 2 166
## 3374 https://udn.com/news/story/6813/5244746 操演 2 166
## 3375 https://udn.com/news/story/6813/5244746 聯合 2 166
## 3376 https://udn.com/news/story/7331/4308946 中國 2 73
## 3377 https://udn.com/news/story/7331/4308946 主權 2 73
## 3378 https://udn.com/news/story/7331/4308946 挑釁 2 73
## 3379 https://udn.com/news/story/7331/4308946 海域 2 73
## 3380 https://udn.com/news/story/7331/4308946 戰區 2 73
## 3381 https://udn.com/news/story/7331/4414231 太平洋 2 186
## 3382 https://udn.com/news/story/7331/4414231 全球 2 186
## 3383 https://udn.com/news/story/7331/4414231 防疫 2 186
## 3384 https://udn.com/news/story/7331/4414231 表示 2 186
## 3385 https://udn.com/news/story/7331/4414231 南部 2 186
## 3386 https://udn.com/news/story/7331/4414231 疫情 2 186
## 3387 https://udn.com/news/story/7331/4414231 泰國 2 186
## 3388 https://udn.com/news/story/7331/4414231 照片 2 186
## 3389 https://udn.com/news/story/7331/4414231 圖表 2 186
## 3390 https://udn.com/news/story/7331/4414231 數據 2 186
## 3391 https://udn.com/news/story/7331/4414231 確診 2 186
## 3392 https://udn.com/news/story/7331/4414231 戰區 2 186
## 3393 https://udn.com/news/story/7331/4414231 艦隊 2 186
## 3394 https://udn.com/news/story/7331/4488979 一架 2 221
## 3395 https://udn.com/news/story/7331/4488979 日本 2 221
## 3396 https://udn.com/news/story/7331/4488979 安排 2 221
## 3397 https://udn.com/news/story/7331/4488979 年度計劃 2 221
## 3398 https://udn.com/news/story/7331/4488979 並往 2 221
## 3399 https://udn.com/news/story/7331/4488979 兩艘 2 221
## 3400 https://udn.com/news/story/7331/4488979 表示 2 221
## 3401 https://udn.com/news/story/7331/4488979 南下 2 221
## 3402 https://udn.com/news/story/7331/4488979 南方 2 221
## 3403 https://udn.com/news/story/7331/4488979 美軍 2 221
## 3404 https://udn.com/news/story/7331/4488979 飛行 2 221
## 3405 https://udn.com/news/story/7331/4488979 飛彈 2 221
## 3406 https://udn.com/news/story/7331/4488979 航空母艦 2 221
## 3407 https://udn.com/news/story/7331/4488979 國防部 2 221
## 3408 https://udn.com/news/story/7331/4488979 專題 2 221
## 3409 https://udn.com/news/story/7331/4488979 組織 2 221
## 3410 https://udn.com/news/story/7331/4488979 發言人 2 221
## 3411 https://udn.com/news/story/7331/4488979 進入 2 221
## 3412 https://udn.com/news/story/7331/4488979 圖表 2 221
## 3413 https://udn.com/news/story/7331/4488979 演練 2 221
## 3414 https://udn.com/news/story/7331/4488979 數據 2 221
## 3415 https://udn.com/news/story/7331/4503537 今天 2 190
## 3416 https://udn.com/news/story/7331/4503537 公布 2 190
## 3417 https://udn.com/news/story/7331/4503537 分別 2 190
## 3418 https://udn.com/news/story/7331/4503537 主權 2 190
## 3419 https://udn.com/news/story/7331/4503537 地名 2 190
## 3420 https://udn.com/news/story/7331/4503537 成立 2 190
## 3421 https://udn.com/news/story/7331/4503537 官方 2 190
## 3422 https://udn.com/news/story/7331/4503537 海面 2 190
## 3423 https://udn.com/news/story/7331/4503537 動作 2 190
## 3424 https://udn.com/news/story/7331/4503537 圖表 2 190
## 3425 https://udn.com/news/story/7331/4503537 數據 2 190
## 3426 https://udn.com/news/story/7331/4530327 人類 2 218
## 3427 https://udn.com/news/story/7331/4530327 大使館 2 218
## 3428 https://udn.com/news/story/7331/4530327 世界 2 218
## 3429 https://udn.com/news/story/7331/4530327 目的 2 218
## 3430 https://udn.com/news/story/7331/4530327 企圖 2 218
## 3431 https://udn.com/news/story/7331/4530327 全球 2 218
## 3432 https://udn.com/news/story/7331/4530327 合作 2 218
## 3433 https://udn.com/news/story/7331/4530327 命運 2 218
## 3434 https://udn.com/news/story/7331/4530327 和平 2 218
## 3435 https://udn.com/news/story/7331/4530327 服務 2 218
## 3436 https://udn.com/news/story/7331/4530327 南海 2 218
## 3437 https://udn.com/news/story/7331/4530327 國家 2 218
## 3438 https://udn.com/news/story/7331/4530327 組織 2 218
## 3439 https://udn.com/news/story/7331/4530327 搬弄是非 2 218
## 3440 https://udn.com/news/story/7331/4530327 圖表 2 218
## 3441 https://udn.com/news/story/7331/4530327 對此 2 218
## 3442 https://udn.com/news/story/7331/4530327 維護 2 218
## 3443 https://udn.com/news/story/7331/4530327 數據 2 218
## 3444 https://udn.com/news/story/7331/4530327 確診 2 218
## 3445 https://udn.com/news/story/7331/4530327 戰略 2 218
## 3446 https://udn.com/news/story/7331/4530327 穩定 2 218
## 3447 https://udn.com/news/story/7331/4530327 顛倒黑白 2 218
## 3448 https://udn.com/news/story/7331/4530327 霸權 2 218
## 3449 https://udn.com/news/story/7331/4557178 大陸 2 148
## 3450 https://udn.com/news/story/7331/4557178 公園 2 148
## 3451 https://udn.com/news/story/7331/4557178 太平洋 2 148
## 3452 https://udn.com/news/story/7331/4557178 近期 2 148
## 3453 https://udn.com/news/story/7331/4557178 指出 2 148
## 3454 https://udn.com/news/story/7331/4557178 海南島 2 148
## 3455 https://udn.com/news/story/7331/4557178 國家 2 148
## 3456 https://udn.com/news/story/7331/4557178 控制 2 148
## 3457 https://udn.com/news/story/7331/4557178 登陸 2 148
## 3458 https://udn.com/news/story/7331/4557178 群島 2 148
## 3459 https://udn.com/news/story/7331/4557178 圖表 2 148
## 3460 https://udn.com/news/story/7331/4557178 認為 2 148
## 3461 https://udn.com/news/story/7331/4557178 數據 2 148
## 3462 https://udn.com/news/story/7331/4605008 之間 2 268
## 3463 https://udn.com/news/story/7331/4605008 引述 2 268
## 3464 https://udn.com/news/story/7331/4605008 外國 2 268
## 3465 https://udn.com/news/story/7331/4605008 必要 2 268
## 3466 https://udn.com/news/story/7331/4605008 各國 2 268
## 3467 https://udn.com/news/story/7331/4605008 合適 2 268
## 3468 https://udn.com/news/story/7331/4605008 西沙 2 268
## 3469 https://udn.com/news/story/7331/4605008 作戰 2 268
## 3470 https://udn.com/news/story/7331/4605008 李杰 2 268
## 3471 https://udn.com/news/story/7331/4605008 東沙 2 268
## 3472 https://udn.com/news/story/7331/4605008 南沙 2 268
## 3473 https://udn.com/news/story/7331/4605008 研究員 2 268
## 3474 https://udn.com/news/story/7331/4605008 軍事 2 268
## 3475 https://udn.com/news/story/7331/4605008 軍機 2 268
## 3476 https://udn.com/news/story/7331/4605008 海軍 2 268
## 3477 https://udn.com/news/story/7331/4605008 問題 2 268
## 3478 https://udn.com/news/story/7331/4605008 基礎設施 2 268
## 3479 https://udn.com/news/story/7331/4605008 探測 2 268
## 3480 https://udn.com/news/story/7331/4605008 涵蓋 2 268
## 3481 https://udn.com/news/story/7331/4605008 設備 2 268
## 3482 https://udn.com/news/story/7331/4605008 通常 2 268
## 3483 https://udn.com/news/story/7331/4605008 湯普森 2 268
## 3484 https://udn.com/news/story/7331/4605008 等待 2 268
## 3485 https://udn.com/news/story/7331/4605008 當局 2 268
## 3486 https://udn.com/news/story/7331/4605008 群島 2 268
## 3487 https://udn.com/news/story/7331/4605008 劃設 2 268
## 3488 https://udn.com/news/story/7331/4605008 管理 2 268
## 3489 https://udn.com/news/story/7331/4605008 認為 2 268
## 3490 https://udn.com/news/story/7331/4605008 範圍 2 268
## 3491 https://udn.com/news/story/7331/4605008 擁有 2 268
## 3492 https://udn.com/news/story/7331/4605008 選擇 2 268
## 3493 https://udn.com/news/story/7331/4605008 關係 2 268
## 3494 https://udn.com/news/story/7331/4605008 驅逐 2 268
## 3495 https://udn.com/news/story/7331/4681864 引述 2 231
## 3496 https://udn.com/news/story/7331/4681864 比較 2 231
## 3497 https://udn.com/news/story/7331/4681864 目標 2 231
## 3498 https://udn.com/news/story/7331/4681864 存在 2 231
## 3499 https://udn.com/news/story/7331/4681864 行動 2 231
## 3500 https://udn.com/news/story/7331/4681864 附近 2 231
## 3501 https://udn.com/news/story/7331/4681864 強大 2 231
## 3502 https://udn.com/news/story/7331/4681864 部隊 2 231
## 3503 https://udn.com/news/story/7331/4681864 報導 2 231
## 3504 https://udn.com/news/story/7331/4681864 進行 2 231
## 3505 https://udn.com/news/story/7331/4681864 預測 2 231
## 3506 https://udn.com/news/story/7331/4681864 對手 2 231
## 3507 https://udn.com/news/story/7331/4681864 彰顯 2 231
## 3508 https://udn.com/news/story/7331/4681864 撤出 2 231
## 3509 https://udn.com/news/story/7331/4681864 構成 2 231
## 3510 https://udn.com/news/story/7331/4681864 認為 2 231
## 3511 https://udn.com/news/story/7331/4681864 遠程 2 231
## 3512 https://udn.com/news/story/7331/4681864 戰鬥 2 231
## 3513 https://udn.com/news/story/7331/4681864 戰略 2 231
## 3514 https://udn.com/news/story/7331/4697199 一邊 2 274
## 3515 https://udn.com/news/story/7331/4697199 不要 2 274
## 3516 https://udn.com/news/story/7331/4697199 不穩 2 274
## 3517 https://udn.com/news/story/7331/4697199 主權 2 274
## 3518 https://udn.com/news/story/7331/4697199 外國 2 274
## 3519 https://udn.com/news/story/7331/4697199 必要措施 2 274
## 3520 https://udn.com/news/story/7331/4697199 正常 2 274
## 3521 https://udn.com/news/story/7331/4697199 安全 2 274
## 3522 https://udn.com/news/story/7331/4697199 行動 2 274
## 3523 https://udn.com/news/story/7331/4697199 利益 2 274
## 3524 https://udn.com/news/story/7331/4697199 局勢 2 274
## 3525 https://udn.com/news/story/7331/4697199 批評 2 274
## 3526 https://udn.com/news/story/7331/4697199 爭議 2 274
## 3527 https://udn.com/news/story/7331/4697199 指望 2 274
## 3528 https://udn.com/news/story/7331/4697199 指責 2 274
## 3529 https://udn.com/news/story/7331/4697199 美軍 2 274
## 3530 https://udn.com/news/story/7331/4697199 美國國防部 2 274
## 3531 https://udn.com/news/story/7331/4697199 軍演 2 274
## 3532 https://udn.com/news/story/7331/4697199 海域 2 274
## 3533 https://udn.com/news/story/7331/4697199 航空母艦 2 274
## 3534 https://udn.com/news/story/7331/4697199 國家主權 2 274
## 3535 https://udn.com/news/story/7331/4697199 推動 2 274
## 3536 https://udn.com/news/story/7331/4697199 解放軍報 2 274
## 3537 https://udn.com/news/story/7331/4697199 演練 2 274
## 3538 https://udn.com/news/story/7331/4697199 維護 2 274
## 3539 https://udn.com/news/story/7331/4697199 舉行 2 274
## 3540 https://udn.com/news/story/7331/4699962 大陸 2 129
## 3541 https://udn.com/news/story/7331/4699962 中方 2 129
## 3542 https://udn.com/news/story/7331/4699962 中國 2 129
## 3543 https://udn.com/news/story/7331/4699962 反對 2 129
## 3544 https://udn.com/news/story/7331/4699962 主張 2 129
## 3545 https://udn.com/news/story/7331/4699962 立場 2 129
## 3546 https://udn.com/news/story/7331/4699962 努力 2 129
## 3547 https://udn.com/news/story/7331/4699962 批評 2 129
## 3548 https://udn.com/news/story/7331/4699962 指責 2 129
## 3549 https://udn.com/news/story/7331/4699962 堅決 2 129
## 3550 https://udn.com/news/story/7331/4699962 無理 2 129
## 3551 https://udn.com/news/story/7331/4699962 維護 2 129
## 3552 https://udn.com/news/story/7331/4702018 反對 2 181
## 3553 https://udn.com/news/story/7331/4702018 主張 2 181
## 3554 https://udn.com/news/story/7331/4702018 主權 2 181
## 3555 https://udn.com/news/story/7331/4702018 外交部 2 181
## 3556 https://udn.com/news/story/7331/4702018 立堅 2 181
## 3557 https://udn.com/news/story/7331/4702018 和平 2 181
## 3558 https://udn.com/news/story/7331/4702018 指出 2 181
## 3559 https://udn.com/news/story/7331/4702018 海洋法 2 181
## 3560 https://udn.com/news/story/7331/4702018 海洋權益 2 181
## 3561 https://udn.com/news/story/7331/4702018 破壞者 2 181
## 3562 https://udn.com/news/story/7331/4702018 針對 2 181
## 3563 https://udn.com/news/story/7331/4702018 國際 2 181
## 3564 https://udn.com/news/story/7331/4702018 麻煩 2 181
## 3565 https://udn.com/news/story/7331/4702018 發言人 2 181
## 3566 https://udn.com/news/story/7331/4702018 製造者 2 181
## 3567 https://udn.com/news/story/7331/4702018 領土 2 181
## 3568 https://udn.com/news/story/7331/4702018 穩定 2 181
## 3569 https://udn.com/news/story/7331/4703971 一架 2 200
## 3570 https://udn.com/news/story/7331/4703971 中國 2 200
## 3571 https://udn.com/news/story/7331/4703971 方向 2 200
## 3572 https://udn.com/news/story/7331/4703971 空地 2 200
## 3573 https://udn.com/news/story/7331/4703971 美國空軍 2 200
## 3574 https://udn.com/news/story/7331/4703971 軍事 2 200
## 3575 https://udn.com/news/story/7331/4703971 軍艦 2 200
## 3576 https://udn.com/news/story/7331/4703971 偵察機 2 200
## 3577 https://udn.com/news/story/7331/4703971 報導 2 200
## 3578 https://udn.com/news/story/7331/4703971 該機 2 200
## 3579 https://udn.com/news/story/7331/4703971 廣東 2 200
## 3580 https://udn.com/news/story/7331/4703971 數據 2 200
## 3581 https://udn.com/news/story/7331/4704552 上述 2 216
## 3582 https://udn.com/news/story/7331/4704552 中國外交部 2 216
## 3583 https://udn.com/news/story/7331/4704552 世界 2 216
## 3584 https://udn.com/news/story/7331/4704552 主張 2 216
## 3585 https://udn.com/news/story/7331/4704552 主權 2 216
## 3586 https://udn.com/news/story/7331/4704552 史達偉 2 216
## 3587 https://udn.com/news/story/7331/4704552 再次 2 216
## 3588 https://udn.com/news/story/7331/4704552 希望 2 216
## 3589 https://udn.com/news/story/7331/4704552 來得 2 216
## 3590 https://udn.com/news/story/7331/4704552 和平 2 216
## 3591 https://udn.com/news/story/7331/4704552 官員 2 216
## 3592 https://udn.com/news/story/7331/4704552 威脅 2 216
## 3593 https://udn.com/news/story/7331/4704552 流氓 2 216
## 3594 https://udn.com/news/story/7331/4704552 涉及 2 216
## 3595 https://udn.com/news/story/7331/4704552 破壞 2 216
## 3596 https://udn.com/news/story/7331/4704552 國務卿 2 216
## 3597 https://udn.com/news/story/7331/4704552 堅定 2 216
## 3598 https://udn.com/news/story/7331/4704552 排除 2 216
## 3599 https://udn.com/news/story/7331/4704552 猛烈 2 216
## 3600 https://udn.com/news/story/7331/4704552 就讓 2 216
## 3601 https://udn.com/news/story/7331/4704552 暴風雨 2 216
## 3602 https://udn.com/news/story/7331/4704552 興風作浪 2 216
## 3603 https://udn.com/news/story/7331/4713477 八架 2 266
## 3604 https://udn.com/news/story/7331/4713477 升溫 2 266
## 3605 https://udn.com/news/story/7331/4713477 太平洋 2 266
## 3606 https://udn.com/news/story/7331/4713477 主權 2 266
## 3607 https://udn.com/news/story/7331/4713477 出現 2 266
## 3608 https://udn.com/news/story/7331/4713477 本月 2 266
## 3609 https://udn.com/news/story/7331/4713477 作戰 2 266
## 3610 https://udn.com/news/story/7331/4713477 角力 2 266
## 3611 https://udn.com/news/story/7331/4713477 兩艘 2 266
## 3612 https://udn.com/news/story/7331/4713477 軍演 2 266
## 3613 https://udn.com/news/story/7331/4713477 島上 2 266
## 3614 https://udn.com/news/story/7331/4713477 島礁 2 266
## 3615 https://udn.com/news/story/7331/4713477 航空母艦 2 266
## 3616 https://udn.com/news/story/7331/4713477 控制 2 266
## 3617 https://udn.com/news/story/7331/4713477 發現 2 266
## 3618 https://udn.com/news/story/7331/4713477 機庫 2 266
## 3619 https://udn.com/news/story/7331/4713477 關島 2 266
## 3620 https://udn.com/news/story/7331/4713477 殲擊機 2 266
## 3621 https://udn.com/news/story/7331/4713477 轟炸機 2 266
## 3622 https://udn.com/news/story/7331/4713478 一帶 2 208
## 3623 https://udn.com/news/story/7331/4713478 一路 2 208
## 3624 https://udn.com/news/story/7331/4713478 子公司 2 208
## 3625 https://udn.com/news/story/7331/4713478 分析 2 208
## 3626 https://udn.com/news/story/7331/4713478 日前 2 208
## 3627 https://udn.com/news/story/7331/4713478 可能 2 208
## 3628 https://udn.com/news/story/7331/4713478 角色 2 208
## 3629 https://udn.com/news/story/7331/4713478 事務 2 208
## 3630 https://udn.com/news/story/7331/4713478 兩家 2 208
## 3631 https://udn.com/news/story/7331/4713478 東南亞 2 208
## 3632 https://udn.com/news/story/7331/4713478 股份 2 208
## 3633 https://udn.com/news/story/7331/4713478 建設 2 208
## 3634 https://udn.com/news/story/7331/4713478 指出 2 208
## 3635 https://udn.com/news/story/7331/4713478 計畫 2 208
## 3636 https://udn.com/news/story/7331/4713478 倡議 2 208
## 3637 https://udn.com/news/story/7331/4713478 海洋 2 208
## 3638 https://udn.com/news/story/7331/4713478 國有企業 2 208
## 3639 https://udn.com/news/story/7331/4713478 菲律賓 2 208
## 3640 https://udn.com/news/story/7331/4713478 點名 2 208
## 3641 https://udn.com/news/story/7331/4713478 霸凌 2 208
## 3642 https://udn.com/news/story/7331/4713855 外部 2 189
## 3643 https://udn.com/news/story/7331/4713855 因素 2 189
## 3644 https://udn.com/news/story/7331/4713855 西沙 2 189
## 3645 https://udn.com/news/story/7331/4713855 位於 2 189
## 3646 https://udn.com/news/story/7331/4713855 表示 2 189
## 3647 https://udn.com/news/story/7331/4713855 海軍 2 189
## 3648 https://udn.com/news/story/7331/4713855 側衛 2 189
## 3649 https://udn.com/news/story/7331/4713855 區域 2 189
## 3650 https://udn.com/news/story/7331/4713855 發現 2 189
## 3651 https://udn.com/news/story/7331/4713855 照片 2 189
## 3652 https://udn.com/news/story/7331/4713855 群島 2 189
## 3653 https://udn.com/news/story/7331/4713855 解析度 2 189
## 3654 https://udn.com/news/story/7331/4713855 認為 2 189
## 3655 https://udn.com/news/story/7331/4713855 撰文 2 189
## 3656 https://udn.com/news/story/7331/4713855 蓬佩奧 2 189
## 3657 https://udn.com/news/story/7331/4713855 變體 2 189
## 3658 https://udn.com/news/story/7331/4724139 一架 2 214
## 3659 https://udn.com/news/story/7331/4724139 一段距離 2 214
## 3660 https://udn.com/news/story/7331/4724139 反潛 2 214
## 3661 https://udn.com/news/story/7331/4724139 地區 2 214
## 3662 https://udn.com/news/story/7331/4724139 行為 2 214
## 3663 https://udn.com/news/story/7331/4724139 武器 2 214
## 3664 https://udn.com/news/story/7331/4724139 表示 2 214
## 3665 https://udn.com/news/story/7331/4724139 信號 2 214
## 3666 https://udn.com/news/story/7331/4724139 軍機 2 214
## 3667 https://udn.com/news/story/7331/4724139 軍艦 2 214
## 3668 https://udn.com/news/story/7331/4724139 飛行 2 214
## 3669 https://udn.com/news/story/7331/4724139 海軍 2 214
## 3670 https://udn.com/news/story/7331/4724139 國家 2 214
## 3671 https://udn.com/news/story/7331/4724139 發射 2 214
## 3672 https://udn.com/news/story/7331/4724139 解放軍 2 214
## 3673 https://udn.com/news/story/7331/4724139 對方 2 214
## 3674 https://udn.com/news/story/7331/4724139 隸屬於 2 214
## 3675 https://udn.com/news/story/7331/4727917 上空 2 142
## 3676 https://udn.com/news/story/7331/4727917 中共 2 142
## 3677 https://udn.com/news/story/7331/4727917 反潛巡邏機 2 142
## 3678 https://udn.com/news/story/7331/4727917 以西 2 142
## 3679 https://udn.com/news/story/7331/4727917 台灣 2 142
## 3680 https://udn.com/news/story/7331/4727917 危險 2 142
## 3681 https://udn.com/news/story/7331/4727917 局勢 2 142
## 3682 https://udn.com/news/story/7331/4727917 南部 2 142
## 3683 https://udn.com/news/story/7331/4727917 封海 2 142
## 3684 https://udn.com/news/story/7331/4727917 持續 2 142
## 3685 https://udn.com/news/story/7331/4727917 美軍 2 142
## 3686 https://udn.com/news/story/7331/4727917 美國空軍 2 142
## 3687 https://udn.com/news/story/7331/4727917 飛行 2 142
## 3688 https://udn.com/news/story/7331/4727917 禁止 2 142
## 3689 https://udn.com/news/story/7331/4727917 解放軍 2 142
## 3690 https://udn.com/news/story/7331/4727917 緊張 2 142
## 3691 https://udn.com/news/story/7331/4727917 廣東省 2 142
## 3692 https://udn.com/news/story/7331/4727917 擅自 2 142
## 3693 https://udn.com/news/story/7331/4727917 舉行 2 142
## 3694 https://udn.com/news/story/7331/4731672 一次 2 186
## 3695 https://udn.com/news/story/7331/4731672 一架 2 186
## 3696 https://udn.com/news/story/7331/4731672 任務 2 186
## 3697 https://udn.com/news/story/7331/4731672 共軍 2 186
## 3698 https://udn.com/news/story/7331/4731672 尖峰 2 186
## 3699 https://udn.com/news/story/7331/4731672 空域 2 186
## 3700 https://udn.com/news/story/7331/4731672 指出 2 186
## 3701 https://udn.com/news/story/7331/4731672 美方 2 186
## 3702 https://udn.com/news/story/7331/4731672 計算 2 186
## 3703 https://udn.com/news/story/7331/4731672 軍演 2 186
## 3704 https://udn.com/news/story/7331/4731672 飛機 2 186
## 3705 https://udn.com/news/story/7331/4731672 海軍 2 186
## 3706 https://udn.com/news/story/7331/4731672 偵巡 2 186
## 3707 https://udn.com/news/story/7331/4731672 偵察機 2 186
## 3708 https://udn.com/news/story/7331/4731672 這段 2 186
## 3709 https://udn.com/news/story/7331/4731672 幾次 2 186
## 3710 https://udn.com/news/story/7331/4731672 新高 2 186
## 3711 https://udn.com/news/story/7331/4731672 逼近 2 186
## 3712 https://udn.com/news/story/7331/4731672 蒐集 2 186
## 3713 https://udn.com/news/story/7331/4731672 錄音 2 186
## 3714 https://udn.com/news/story/7331/4731672 頻率 2 186
## 3715 https://udn.com/news/story/7331/4731750 公告 2 279
## 3716 https://udn.com/news/story/7331/4731750 反對 2 279
## 3717 https://udn.com/news/story/7331/4731750 地區 2 279
## 3718 https://udn.com/news/story/7331/4731750 巡航 2 279
## 3719 https://udn.com/news/story/7331/4731750 和平 2 279
## 3720 https://udn.com/news/story/7331/4731750 抵近 2 279
## 3721 https://udn.com/news/story/7331/4731750 東海 2 279
## 3722 https://udn.com/news/story/7331/4731750 直線 2 279
## 3723 https://udn.com/news/story/7331/4731750 表示 2 279
## 3724 https://udn.com/news/story/7331/4731750 封海 2 279
## 3725 https://udn.com/news/story/7331/4731750 政府 2 279
## 3726 https://udn.com/news/story/7331/4731750 派出 2 279
## 3727 https://udn.com/news/story/7331/4731750 美軍 2 279
## 3728 https://udn.com/news/story/7331/4731750 美國空軍 2 279
## 3729 https://udn.com/news/story/7331/4731750 軍機 2 279
## 3730 https://udn.com/news/story/7331/4731750 特別 2 279
## 3731 https://udn.com/news/story/7331/4731750 特徵 2 279
## 3732 https://udn.com/news/story/7331/4731750 偵察 2 279
## 3733 https://udn.com/news/story/7331/4731750 深處 2 279
## 3734 https://udn.com/news/story/7331/4731750 進行 2 279
## 3735 https://udn.com/news/story/7331/4731750 當天 2 279
## 3736 https://udn.com/news/story/7331/4731750 解放軍 2 279
## 3737 https://udn.com/news/story/7331/4731750 穩定 2 279
## 3738 https://udn.com/news/story/7331/4737312 一貫 2 291
## 3739 https://udn.com/news/story/7331/4737312 公約 2 291
## 3740 https://udn.com/news/story/7331/4737312 主權 2 291
## 3741 https://udn.com/news/story/7331/4737312 包括 2 291
## 3742 https://udn.com/news/story/7331/4737312 立場 2 291
## 3743 https://udn.com/news/story/7331/4737312 多次 2 291
## 3744 https://udn.com/news/story/7331/4737312 所有 2 291
## 3745 https://udn.com/news/story/7331/4737312 政客 2 291
## 3746 https://udn.com/news/story/7331/4737312 是否 2 291
## 3747 https://udn.com/news/story/7331/4737312 美軍 2 291
## 3748 https://udn.com/news/story/7331/4737312 軍事 2 291
## 3749 https://udn.com/news/story/7331/4737312 夏威夷 2 291
## 3750 https://udn.com/news/story/7331/4737312 海洋法 2 291
## 3751 https://udn.com/news/story/7331/4737312 退群 2 291
## 3752 https://udn.com/news/story/7331/4737312 國際 2 291
## 3753 https://udn.com/news/story/7331/4737312 開到 2 291
## 3754 https://udn.com/news/story/7331/4737312 準則 2 291
## 3755 https://udn.com/news/story/7331/4737312 當事國 2 291
## 3756 https://udn.com/news/story/7331/4737312 製造 2 291
## 3757 https://udn.com/news/story/7331/4737312 聯合國 2 291
## 3758 https://udn.com/news/story/7331/4742714 一架 2 396
## 3759 https://udn.com/news/story/7331/4742714 一段距離 2 396
## 3760 https://udn.com/news/story/7331/4742714 上半年 2 396
## 3761 https://udn.com/news/story/7331/4742714 大選 2 396
## 3762 https://udn.com/news/story/7331/4742714 不會 2 396
## 3763 https://udn.com/news/story/7331/4742714 今年 2 396
## 3764 https://udn.com/news/story/7331/4742714 反華 2 396
## 3765 https://udn.com/news/story/7331/4742714 反潛 2 396
## 3766 https://udn.com/news/story/7331/4742714 引述 2 396
## 3767 https://udn.com/news/story/7331/4742714 加油機 2 396
## 3768 https://udn.com/news/story/7331/4742714 包括 2 396
## 3769 https://udn.com/news/story/7331/4742714 可能 2 396
## 3770 https://udn.com/news/story/7331/4742714 台灣 2 396
## 3771 https://udn.com/news/story/7331/4742714 外長 2 396
## 3772 https://udn.com/news/story/7331/4742714 打破 2 396
## 3773 https://udn.com/news/story/7331/4742714 本月 2 396
## 3774 https://udn.com/news/story/7331/4742714 目前 2 396
## 3775 https://udn.com/news/story/7331/4742714 向西 2 396
## 3776 https://udn.com/news/story/7331/4742714 多達 2 396
## 3777 https://udn.com/news/story/7331/4742714 折返 2 396
## 3778 https://udn.com/news/story/7331/4742714 抵近 2 396
## 3779 https://udn.com/news/story/7331/4742714 東協 2 396
## 3780 https://udn.com/news/story/7331/4742714 武器 2 396
## 3781 https://udn.com/news/story/7331/4742714 注意力 2 396
## 3782 https://udn.com/news/story/7331/4742714 社會 2 396
## 3783 https://udn.com/news/story/7331/4742714 空中 2 396
## 3784 https://udn.com/news/story/7331/4742714 近日 2 396
## 3785 https://udn.com/news/story/7331/4742714 近期 2 396
## 3786 https://udn.com/news/story/7331/4742714 活動 2 396
## 3787 https://udn.com/news/story/7331/4742714 派出 2 396
## 3788 https://udn.com/news/story/7331/4742714 疫情 2 396
## 3789 https://udn.com/news/story/7331/4742714 相信 2 396
## 3790 https://udn.com/news/story/7331/4742714 軍機 2 396
## 3791 https://udn.com/news/story/7331/4742714 面臨 2 396
## 3792 https://udn.com/news/story/7331/4742714 飛行 2 396
## 3793 https://udn.com/news/story/7331/4742714 海里 2 396
## 3794 https://udn.com/news/story/7331/4742714 海岸 2 396
## 3795 https://udn.com/news/story/7331/4742714 海域 2 396
## 3796 https://udn.com/news/story/7331/4742714 國家 2 396
## 3797 https://udn.com/news/story/7331/4742714 國際 2 396
## 3798 https://udn.com/news/story/7331/4742714 國際法 2 396
## 3799 https://udn.com/news/story/7331/4742714 強硬 2 396
## 3800 https://udn.com/news/story/7331/4742714 組織 2 396
## 3801 https://udn.com/news/story/7331/4742714 連續 2 396
## 3802 https://udn.com/news/story/7331/4742714 提升 2 396
## 3803 https://udn.com/news/story/7331/4742714 最近 2 396
## 3804 https://udn.com/news/story/7331/4742714 開到 2 396
## 3805 https://udn.com/news/story/7331/4742714 準則 2 396
## 3806 https://udn.com/news/story/7331/4742714 當天 2 396
## 3807 https://udn.com/news/story/7331/4742714 經濟 2 396
## 3808 https://udn.com/news/story/7331/4742714 試圖 2 396
## 3809 https://udn.com/news/story/7331/4742714 廣東 2 396
## 3810 https://udn.com/news/story/7331/4742714 學者 2 396
## 3811 https://udn.com/news/story/7331/4742714 機已 2 396
## 3812 https://udn.com/news/story/7331/4742714 選情 2 396
## 3813 https://udn.com/news/story/7331/4742714 聯合陣線 2 396
## 3814 https://udn.com/news/story/7331/4742714 轉移 2 396
## 3815 https://udn.com/news/story/7331/4751677 大型 2 138
## 3816 https://udn.com/news/story/7331/4751677 中國 2 138
## 3817 https://udn.com/news/story/7331/4751677 反潛巡邏機 2 138
## 3818 https://udn.com/news/story/7331/4751677 可能 2 138
## 3819 https://udn.com/news/story/7331/4751677 前往 2 138
## 3820 https://udn.com/news/story/7331/4751677 美海軍 2 138
## 3821 https://udn.com/news/story/7331/4751677 海里 2 138
## 3822 https://udn.com/news/story/7331/4751677 偵察 2 138
## 3823 https://udn.com/news/story/7331/4751677 基線 2 138
## 3824 https://udn.com/news/story/7331/4751677 進入 2 138
## 3825 https://udn.com/news/story/7331/4751677 感知 2 138
## 3826 https://udn.com/news/story/7331/4751677 電子 2 138
## 3827 https://udn.com/news/story/7331/4751677 態勢 2 138
## 3828 https://udn.com/news/story/7331/4751677 領海 2 138
## 3829 https://udn.com/news/story/7331/4751677 增加 2 138
## 3830 https://udn.com/news/story/7331/4751677 範圍 2 138
## 3831 https://udn.com/news/story/7331/4751677 戰略 2 138
## 3832 https://udn.com/news/story/7331/4751677 艦載 2 138
## 3833 https://udn.com/news/story/7331/4752420 小時 2 45
## 3834 https://udn.com/news/story/7331/4752420 南海 2 45
## 3835 https://udn.com/news/story/7331/4752420 戰機 2 45
## 3836 https://udn.com/news/story/7331/4785688 十一名 2 121
## 3837 https://udn.com/news/story/7331/4785688 中美 2 121
## 3838 https://udn.com/news/story/7331/4785688 五名 2 121
## 3839 https://udn.com/news/story/7331/4785688 今天 2 121
## 3840 https://udn.com/news/story/7331/4785688 目標 2 121
## 3841 https://udn.com/news/story/7331/4785688 美方 2 121
## 3842 https://udn.com/news/story/7331/4785688 軍事 2 121
## 3843 https://udn.com/news/story/7331/4785688 展開 2 121
## 3844 https://udn.com/news/story/7331/4785688 時機 2 121
## 3845 https://udn.com/news/story/7331/4785688 消息 2 121
## 3846 https://udn.com/news/story/7331/4785688 敏感 2 121
## 3847 https://udn.com/news/story/7331/4785688 發布 2 121
## 3848 https://udn.com/news/story/7331/4785688 頻頻 2 121
## 3849 https://udn.com/news/story/7331/4785688 艦艇 2 121
## 3850 https://udn.com/news/story/7331/4803877 一周 2 157
## 3851 https://udn.com/news/story/7331/4803877 公告 2 157
## 3852 https://udn.com/news/story/7331/4803877 日至 2 157
## 3853 https://udn.com/news/story/7331/4803877 以東 2 157
## 3854 https://udn.com/news/story/7331/4803877 未來 2 157
## 3855 https://udn.com/news/story/7331/4803877 東南部 2 157
## 3856 https://udn.com/news/story/7331/4803877 沿海 2 157
## 3857 https://udn.com/news/story/7331/4803877 青島 2 157
## 3858 https://udn.com/news/story/7331/4803877 宣布 2 157
## 3859 https://udn.com/news/story/7331/4803877 扇形 2 157
## 3860 https://udn.com/news/story/7331/4803877 海南島 2 157
## 3861 https://udn.com/news/story/7331/4803877 航行 2 157
## 3862 https://udn.com/news/story/7331/4803877 區域 2 157
## 3863 https://udn.com/news/story/7331/4803877 執行 2 157
## 3864 https://udn.com/news/story/7331/4803877 將在 2 157
## 3865 https://udn.com/news/story/7331/4803877 組織 2 157
## 3866 https://udn.com/news/story/7331/4803877 連雲港 2 157
## 3867 https://udn.com/news/story/7331/4803877 發布 2 157
## 3868 https://udn.com/news/story/7331/4803877 黃海 2 157
## 3869 https://udn.com/news/story/7331/4803877 粵東 2 157
## 3870 https://udn.com/news/story/7331/4803877 警告 2 157
## 3871 https://udn.com/news/story/7331/4813671 之間 2 140
## 3872 https://udn.com/news/story/7331/4813671 公里 2 140
## 3873 https://udn.com/news/story/7331/4813671 反艦 2 140
## 3874 https://udn.com/news/story/7331/4813671 活動 2 140
## 3875 https://udn.com/news/story/7331/4813671 美國 2 140
## 3876 https://udn.com/news/story/7331/4813671 射程 2 140
## 3877 https://udn.com/news/story/7331/4813671 能力 2 140
## 3878 https://udn.com/news/story/7331/4813671 殺手 2 140
## 3879 https://udn.com/news/story/7331/4813671 彈頭 2 140
## 3880 https://udn.com/news/story/7331/4813671 導彈 2 140
## 3881 https://udn.com/news/story/7331/4814984 干涉 2 91
## 3882 https://udn.com/news/story/7331/4814984 內政 2 91
## 3883 https://udn.com/news/story/7331/4814984 反對 2 91
## 3884 https://udn.com/news/story/7331/4814984 外交部 2 91
## 3885 https://udn.com/news/story/7331/4814984 立堅 2 91
## 3886 https://udn.com/news/story/7331/4814984 完全 2 91
## 3887 https://udn.com/news/story/7331/4814984 制裁 2 91
## 3888 https://udn.com/news/story/7331/4814984 建設 2 91
## 3889 https://udn.com/news/story/7331/4814984 相關 2 91
## 3890 https://udn.com/news/story/7331/4814984 美方 2 91
## 3891 https://udn.com/news/story/7331/4814984 軍事 2 91
## 3892 https://udn.com/news/story/7331/4814984 參與 2 91
## 3893 https://udn.com/news/story/7331/4814984 堅決 2 91
## 3894 https://udn.com/news/story/7331/4816369 公司 2 253
## 3895 https://udn.com/news/story/7331/4816369 水域 2 253
## 3896 https://udn.com/news/story/7331/4816369 有所 2 253
## 3897 https://udn.com/news/story/7331/4816369 行為 2 253
## 3898 https://udn.com/news/story/7331/4816369 兵力 2 253
## 3899 https://udn.com/news/story/7331/4816369 制裁 2 253
## 3900 https://udn.com/news/story/7331/4816369 東風 2 253
## 3901 https://udn.com/news/story/7331/4816369 南部 2 253
## 3902 https://udn.com/news/story/7331/4816369 建設 2 253
## 3903 https://udn.com/news/story/7331/4816369 指出 2 253
## 3904 https://udn.com/news/story/7331/4816369 挑戰 2 253
## 3905 https://udn.com/news/story/7331/4816369 挑釁 2 253
## 3906 https://udn.com/news/story/7331/4816369 畏懼 2 253
## 3907 https://udn.com/news/story/7331/4816369 相關 2 253
## 3908 https://udn.com/news/story/7331/4816369 美軍 2 253
## 3909 https://udn.com/news/story/7331/4816369 個人 2 253
## 3910 https://udn.com/news/story/7331/4816369 強化 2 253
## 3911 https://udn.com/news/story/7331/4816369 意志 2 253
## 3912 https://udn.com/news/story/7331/4816369 認為 2 253
## 3913 https://udn.com/news/story/7331/4816369 戰區 2 253
## 3914 https://udn.com/news/story/7331/4816369 謹慎 2 253
## 3915 https://udn.com/news/story/7331/4816369 嚴格 2 253
## 3916 https://udn.com/news/story/7331/4817559 外交部 2 97
## 3917 https://udn.com/news/story/7331/4817559 地區 2 97
## 3918 https://udn.com/news/story/7331/4817559 安全 2 97
## 3919 https://udn.com/news/story/7331/4817559 例行 2 97
## 3920 https://udn.com/news/story/7331/4817559 挑釁 2 97
## 3921 https://udn.com/news/story/7331/4817559 軍事 2 97
## 3922 https://udn.com/news/story/7331/4817559 針對 2 97
## 3923 https://udn.com/news/story/7331/4817559 對此 2 97
## 3924 https://udn.com/news/story/7331/4817559 穩定 2 97
## 3925 https://udn.com/news/story/7331/4832251 小圈子 2 233
## 3926 https://udn.com/news/story/7331/4832251 已成 2 233
## 3927 https://udn.com/news/story/7331/4832251 中美關係 2 233
## 3928 https://udn.com/news/story/7331/4832251 中國外交部 2 233
## 3929 https://udn.com/news/story/7331/4832251 介入 2 233
## 3930 https://udn.com/news/story/7331/4832251 反華 2 233
## 3931 https://udn.com/news/story/7331/4832251 日本 2 233
## 3932 https://udn.com/news/story/7331/4832251 北約 2 233
## 3933 https://udn.com/news/story/7331/4832251 全球 2 233
## 3934 https://udn.com/news/story/7331/4832251 印度 2 233
## 3935 https://udn.com/news/story/7331/4832251 自由 2 233
## 3936 https://udn.com/news/story/7331/4832251 冷戰 2 233
## 3937 https://udn.com/news/story/7331/4832251 利益 2 233
## 3938 https://udn.com/news/story/7331/4832251 批評 2 233
## 3939 https://udn.com/news/story/7331/4832251 並指 2 233
## 3940 https://udn.com/news/story/7331/4832251 事務 2 233
## 3941 https://udn.com/news/story/7331/4832251 亞洲 2 233
## 3942 https://udn.com/news/story/7331/4832251 和平 2 233
## 3943 https://udn.com/news/story/7331/4832251 和澳洲 2 233
## 3944 https://udn.com/news/story/7331/4832251 奉行 2 233
## 3945 https://udn.com/news/story/7331/4832251 拉攏 2 233
## 3946 https://udn.com/news/story/7331/4832251 東協 2 233
## 3947 https://udn.com/news/story/7331/4832251 表示 2 233
## 3948 https://udn.com/news/story/7331/4832251 威脅 2 233
## 3949 https://udn.com/news/story/7331/4832251 思維 2 233
## 3950 https://udn.com/news/story/7331/4832251 航行 2 233
## 3951 https://udn.com/news/story/7331/4832251 國際 2 233
## 3952 https://udn.com/news/story/7331/4832251 絆腳石 2 233
## 3953 https://udn.com/news/story/7331/4832251 最大 2 233
## 3954 https://udn.com/news/story/7331/4832251 發展 2 233
## 3955 https://udn.com/news/story/7331/4832251 舉行 2 233
## 3956 https://udn.com/news/story/7331/4832251 穩定 2 233
## 3957 https://udn.com/news/story/7331/4832251 攪局 2 233
## 3958 https://udn.com/news/story/7331/4832251 顯示 2 233
## 3959 https://udn.com/news/story/7331/4832768 共同 2 111
## 3960 https://udn.com/news/story/7331/4832768 利益 2 111
## 3961 https://udn.com/news/story/7331/4832768 和平 2 111
## 3962 https://udn.com/news/story/7331/4832768 東協 2 111
## 3963 https://udn.com/news/story/7331/4832768 表示 2 111
## 3964 https://udn.com/news/story/7331/4832768 挑戰 2 111
## 3965 https://udn.com/news/story/7331/4832768 最大 2 111
## 3966 https://udn.com/news/story/7331/4832768 訴求 2 111
## 3967 https://udn.com/news/story/7331/4832768 維護 2 111
## 3968 https://udn.com/news/story/7331/4834648 一些 2 349
## 3969 https://udn.com/news/story/7331/4834648 上空 2 349
## 3970 https://udn.com/news/story/7331/4834648 世界 2 349
## 3971 https://udn.com/news/story/7331/4834648 出現 2 349
## 3972 https://udn.com/news/story/7331/4834648 危險性 2 349
## 3973 https://udn.com/news/story/7331/4834648 回程 2 349
## 3974 https://udn.com/news/story/7331/4834648 此前 2 349
## 3975 https://udn.com/news/story/7331/4834648 行為 2 349
## 3976 https://udn.com/news/story/7331/4834648 吳謙 2 349
## 3977 https://udn.com/news/story/7331/4834648 兩國 2 349
## 3978 https://udn.com/news/story/7331/4834648 和平 2 349
## 3979 https://udn.com/news/story/7331/4834648 抵近 2 349
## 3980 https://udn.com/news/story/7331/4834648 近期 2 349
## 3981 https://udn.com/news/story/7331/4834648 客機 2 349
## 3982 https://udn.com/news/story/7331/4834648 挑釁 2 349
## 3983 https://udn.com/news/story/7331/4834648 政客 2 349
## 3984 https://udn.com/news/story/7331/4834648 美國 2 349
## 3985 https://udn.com/news/story/7331/4834648 飛行 2 349
## 3986 https://udn.com/news/story/7331/4834648 消失 2 349
## 3987 https://udn.com/news/story/7331/4834648 真實 2 349
## 3988 https://udn.com/news/story/7331/4834648 偵察 2 349
## 3989 https://udn.com/news/story/7331/4834648 國防部 2 349
## 3990 https://udn.com/news/story/7331/4834648 堅定 2 349
## 3991 https://udn.com/news/story/7331/4834648 將是 2 349
## 3992 https://udn.com/news/story/7331/4834648 專家 2 349
## 3993 https://udn.com/news/story/7331/4834648 情況 2 349
## 3994 https://udn.com/news/story/7331/4834648 接近 2 349
## 3995 https://udn.com/news/story/7331/4834648 推測 2 349
## 3996 https://udn.com/news/story/7331/4834648 報導 2 349
## 3997 https://udn.com/news/story/7331/4834648 虛假 2 349
## 3998 https://udn.com/news/story/7331/4834648 極具 2 349
## 3999 https://udn.com/news/story/7331/4834648 雷達 2 349
## 4000 https://udn.com/news/story/7331/4834648 電子 2 349
## 4001 https://udn.com/news/story/7331/4834648 管制區 2 349
## 4002 https://udn.com/news/story/7331/4834648 認為 2 349
## 4003 https://udn.com/news/story/7331/4834648 領空 2 349
## 4004 https://udn.com/news/story/7331/4834648 增加 2 349
## 4005 https://udn.com/news/story/7331/4834648 應答機 2 349
## 4006 https://udn.com/news/story/7331/4834648 關係 2 349
## 4007 https://udn.com/news/story/7331/4834648 屬實 2 349
## 4008 https://udn.com/news/story/7331/4834648 顯而易見 2 349
## 4009 https://udn.com/news/story/7331/4849422 介入 2 272
## 4010 https://udn.com/news/story/7331/4849422 王毅還 2 272
## 4011 https://udn.com/news/story/7331/4849422 出於 2 272
## 4012 https://udn.com/news/story/7331/4849422 包括 2 272
## 4013 https://udn.com/news/story/7331/4849422 外長 2 272
## 4014 https://udn.com/news/story/7331/4849422 各國 2 272
## 4015 https://udn.com/news/story/7331/4849422 成為 2 272
## 4016 https://udn.com/news/story/7331/4849422 利益 2 272
## 4017 https://udn.com/news/story/7331/4849422 每次 2 272
## 4018 https://udn.com/news/story/7331/4849422 和平 2 272
## 4019 https://udn.com/news/story/7331/4849422 東亞 2 272
## 4020 https://udn.com/news/story/7331/4849422 東協 2 272
## 4021 https://udn.com/news/story/7331/4849422 武力 2 272
## 4022 https://udn.com/news/story/7331/4849422 爭端 2 272
## 4023 https://udn.com/news/story/7331/4849422 直接 2 272
## 4024 https://udn.com/news/story/7331/4849422 炫耀 2 272
## 4025 https://udn.com/news/story/7331/4849422 峰會 2 272
## 4026 https://udn.com/news/story/7331/4849422 國內 2 272
## 4027 https://udn.com/news/story/7331/4849422 國際 2 272
## 4028 https://udn.com/news/story/7331/4849422 域外 2 272
## 4029 https://udn.com/news/story/7331/4849422 推手 2 272
## 4030 https://udn.com/news/story/7331/4849422 部署 2 272
## 4031 https://udn.com/news/story/7331/4849422 發展 2 272
## 4032 https://udn.com/news/story/7331/4849422 搞亂 2 272
## 4033 https://udn.com/news/story/7331/4849422 製造 2 272
## 4034 https://udn.com/news/story/7331/4849422 需要 2 272
## 4035 https://udn.com/news/story/7331/4866729 目標 2 103
## 4036 https://udn.com/news/story/7331/4866729 抵近 2 103
## 4037 https://udn.com/news/story/7331/4866729 架次 2 103
## 4038 https://udn.com/news/story/7331/4866729 美國空軍 2 103
## 4039 https://udn.com/news/story/7331/4866729 飛機 2 103
## 4040 https://udn.com/news/story/7331/4866729 高強度 2 103
## 4041 https://udn.com/news/story/7331/4866729 偵察 2 103
## 4042 https://udn.com/news/story/7331/4866729 偵察機 2 103
## 4043 https://udn.com/news/story/7331/4866729 進入 2 103
## 4044 https://udn.com/news/story/7331/4866729 實施 2 103
## 4045 https://udn.com/news/story/7331/4883732 大陸 2 121
## 4046 https://udn.com/news/story/7331/4883732 挑釁 2 121
## 4047 https://udn.com/news/story/7331/4883732 美方 2 121
## 4048 https://udn.com/news/story/7331/4883732 美軍 2 121
## 4049 https://udn.com/news/story/7331/4883732 美海軍 2 121
## 4050 https://udn.com/news/story/7331/4883732 軍機 2 121
## 4051 https://udn.com/news/story/7331/4883732 國防部 2 121
## 4052 https://udn.com/news/story/7331/4883732 堅定 2 121
## 4053 https://udn.com/news/story/7331/4883732 進行 2 121
## 4054 https://udn.com/news/story/7331/4883732 黃海 2 121
## 4055 https://udn.com/news/story/7331/4883732 感知 2 121
## 4056 https://udn.com/news/story/7331/4883732 態勢 2 121
## 4057 https://udn.com/news/story/7331/4883732 戰略 2 121
## 4058 https://udn.com/news/story/7331/4895326 一些 2 232
## 4059 https://udn.com/news/story/7331/4895326 大陸 2 232
## 4060 https://udn.com/news/story/7331/4895326 不要 2 232
## 4061 https://udn.com/news/story/7331/4895326 主要 2 232
## 4062 https://udn.com/news/story/7331/4895326 加強 2 232
## 4063 https://udn.com/news/story/7331/4895326 民事 2 232
## 4064 https://udn.com/news/story/7331/4895326 和平 2 232
## 4065 https://udn.com/news/story/7331/4895326 社會 2 232
## 4066 https://udn.com/news/story/7331/4895326 建設 2 232
## 4067 https://udn.com/news/story/7331/4895326 堅定 2 232
## 4068 https://udn.com/news/story/7331/4895326 推手 2 232
## 4069 https://udn.com/news/story/7331/4895326 搞亂 2 232
## 4070 https://udn.com/news/story/7331/4895326 群島 2 232
## 4071 https://udn.com/news/story/7331/4895326 需求 2 232
## 4072 https://udn.com/news/story/7331/4895326 穩定 2 232
## 4073 https://udn.com/news/story/7331/4899934 水準 2 164
## 4074 https://udn.com/news/story/7331/4899934 交通 2 164
## 4075 https://udn.com/news/story/7331/4899934 列編 2 164
## 4076 https://udn.com/news/story/7331/4899934 安全 2 164
## 4077 https://udn.com/news/story/7331/4899934 局長 2 164
## 4078 https://udn.com/news/story/7331/4899934 保障 2 164
## 4079 https://udn.com/news/story/7331/4899934 指揮船 2 164
## 4080 https://udn.com/news/story/7331/4899934 海上 2 164
## 4081 https://udn.com/news/story/7331/4899934 增強 2 164
## 4082 https://udn.com/news/story/7331/4899934 編隊 2 164
## 4083 https://udn.com/news/story/7331/4899934 擔任 2 164
## 4084 https://udn.com/news/story/7331/4899934 應急 2 164
## 4085 https://udn.com/news/story/7331/4922504 士兵 2 262
## 4086 https://udn.com/news/story/7331/4922504 中方 2 262
## 4087 https://udn.com/news/story/7331/4922504 主權 2 262
## 4088 https://udn.com/news/story/7331/4922504 外長 2 262
## 4089 https://udn.com/news/story/7331/4922504 危機 2 262
## 4090 https://udn.com/news/story/7331/4922504 因素 2 262
## 4091 https://udn.com/news/story/7331/4922504 利用 2 262
## 4092 https://udn.com/news/story/7331/4922504 形成 2 262
## 4093 https://udn.com/news/story/7331/4922504 走火 2 262
## 4094 https://udn.com/news/story/7331/4922504 美軍 2 262
## 4095 https://udn.com/news/story/7331/4922504 海空 2 262
## 4096 https://udn.com/news/story/7331/4922504 停擺 2 262
## 4097 https://udn.com/news/story/7331/4922504 問題 2 262
## 4098 https://udn.com/news/story/7331/4922504 採取 2 262
## 4099 https://udn.com/news/story/7331/4922504 接受 2 262
## 4100 https://udn.com/news/story/7331/4922504 準則 2 262
## 4101 https://udn.com/news/story/7331/4922504 管控 2 262
## 4102 https://udn.com/news/story/7331/4922504 認為 2 262
## 4103 https://udn.com/news/story/7331/4922504 磋商 2 262
## 4104 https://udn.com/news/story/7331/4922504 機制 2 262
## 4105 https://udn.com/news/story/7331/4922504 擦槍 2 262
## 4106 https://udn.com/news/story/7331/4922504 雙方 2 262
## 4107 https://udn.com/news/story/7331/4922504 關係 2 262
## 4108 https://udn.com/news/story/7331/4926456 中國 2 128
## 4109 https://udn.com/news/story/7331/4926456 平台 2 128
## 4110 https://udn.com/news/story/7331/4926456 全面 2 128
## 4111 https://udn.com/news/story/7331/4926456 多邊 2 128
## 4112 https://udn.com/news/story/7331/4926456 里夫 2 128
## 4113 https://udn.com/news/story/7331/4926456 南海 2 128
## 4114 https://udn.com/news/story/7331/4926456 宣布 2 128
## 4115 https://udn.com/news/story/7331/4926456 洛欽 2 128
## 4116 https://udn.com/news/story/7331/4926456 疫苗 2 128
## 4117 https://udn.com/news/story/7331/4926456 倡議 2 128
## 4118 https://udn.com/news/story/7331/4926456 海灣地區 2 128
## 4119 https://udn.com/news/story/7331/4926456 報導 2 128
## 4120 https://udn.com/news/story/7331/4926456 菲方 2 128
## 4121 https://udn.com/news/story/7331/4926456 雲南 2 128
## 4122 https://udn.com/news/story/7331/4926456 搭建 2 128
## 4123 https://udn.com/news/story/7331/4926456 會談 2 128
## 4124 https://udn.com/news/story/7331/4926456 對話 2 128
## 4125 https://udn.com/news/story/7331/4926456 騰衝 2 128
## 4126 https://udn.com/news/story/7331/5039328 大管家 2 198
## 4127 https://udn.com/news/story/7331/5039328 主持 2 198
## 4128 https://udn.com/news/story/7331/5039328 並在 2 198
## 4129 https://udn.com/news/story/7331/5039328 委員會 2 198
## 4130 https://udn.com/news/story/7331/5039328 重返 2 198
## 4131 https://udn.com/news/story/7331/5039328 常務 2 198
## 4132 https://udn.com/news/story/7331/5039328 接替 2 198
## 4133 https://udn.com/news/story/7331/5039328 這次 2 198
## 4134 https://udn.com/news/story/7331/5039328 報導 2 198
## 4135 https://udn.com/news/story/7331/5039328 戰書 2 198
## 4136 https://udn.com/news/story/7331/5220062 出現 2 90
## 4137 https://udn.com/news/story/7331/5220062 南海 2 90
## 4138 https://udn.com/news/story/7331/5220062 軍人 2 90
## 4139 https://udn.com/news/story/7331/5220062 解放軍 2 90
## 4140 https://udn.com/news/story/7331/5220062 寫道 2 90
## 4141 https://udn.com/news/story/7331/5220062 環境 2 90
## 4142 https://udn.com/news/story/7331/5235138 中共 2 99
## 4143 https://udn.com/news/story/7331/5235138 主權 2 99
## 4144 https://udn.com/news/story/7331/5235138 地區 2 99
## 4145 https://udn.com/news/story/7331/5235138 安全 2 99
## 4146 https://udn.com/news/story/7331/5235138 解放軍 2 99
## 4147 https://udn.com/news/story/7331/5235138 穩定 2 99
## 4148 https://udn.com/news/story/7331/5285610 一艘 2 128
## 4149 https://udn.com/news/story/7331/5285610 不要 2 128
## 4150 https://udn.com/news/story/7331/5285610 中方 2 128
## 4151 https://udn.com/news/story/7331/5285610 反對 2 128
## 4152 https://udn.com/news/story/7331/5285610 存在 2 128
## 4153 https://udn.com/news/story/7331/5285610 和平 2 128
## 4154 https://udn.com/news/story/7331/5285610 派遣 2 128
## 4155 https://udn.com/news/story/7331/5285610 為名 2 128
## 4156 https://udn.com/news/story/7331/5285610 英國 2 128
## 4157 https://udn.com/news/story/7331/5285610 飛越 2 128
## 4158 https://udn.com/news/story/7331/5285610 海軍 2 128
## 4159 https://udn.com/news/story/7331/5285610 進入 2 128
## 4160 https://udn.com/news/story/7331/5285610 準備 2 128
## 4161 https://udn.com/news/story/7331/5287493 一些 2 428
## 4162 https://udn.com/news/story/7331/5287493 不同 2 428
## 4163 https://udn.com/news/story/7331/5287493 中方 2 428
## 4164 https://udn.com/news/story/7331/5287493 中長期 2 428
## 4165 https://udn.com/news/story/7331/5287493 互信 2 428
## 4166 https://udn.com/news/story/7331/5287493 加強 2 428
## 4167 https://udn.com/news/story/7331/5287493 市場 2 428
## 4168 https://udn.com/news/story/7331/5287493 地方 2 428
## 4169 https://udn.com/news/story/7331/5287493 找出 2 428
## 4170 https://udn.com/news/story/7331/5287493 技術 2 428
## 4171 https://udn.com/news/story/7331/5287493 事實上 2 428
## 4172 https://udn.com/news/story/7331/5287493 和平 2 428
## 4173 https://udn.com/news/story/7331/5287493 服務 2 428
## 4174 https://udn.com/news/story/7331/5287493 表示 2 428
## 4175 https://udn.com/news/story/7331/5287493 門戶開放 2 428
## 4176 https://udn.com/news/story/7331/5287493 拜登 2 428
## 4177 https://udn.com/news/story/7331/5287493 指出 2 428
## 4178 https://udn.com/news/story/7331/5287493 政策 2 428
## 4179 https://udn.com/news/story/7331/5287493 相對 2 428
## 4180 https://udn.com/news/story/7331/5287493 致力於 2 428
## 4181 https://udn.com/news/story/7331/5287493 重建 2 428
## 4182 https://udn.com/news/story/7331/5287493 容易 2 428
## 4183 https://udn.com/news/story/7331/5287493 國際 2 428
## 4184 https://udn.com/news/story/7331/5287493 強力 2 428
## 4185 https://udn.com/news/story/7331/5287493 採取 2 428
## 4186 https://udn.com/news/story/7331/5287493 現在 2 428
## 4187 https://udn.com/news/story/7331/5287493 無論是 2 428
## 4188 https://udn.com/news/story/7331/5287493 短期內 2 428
## 4189 https://udn.com/news/story/7331/5287493 超越 2 428
## 4190 https://udn.com/news/story/7331/5287493 越來越 2 428
## 4191 https://udn.com/news/story/7331/5287493 開放 2 428
## 4192 https://udn.com/news/story/7331/5287493 意識形態 2 428
## 4193 https://udn.com/news/story/7331/5287493 溝通 2 428
## 4194 https://udn.com/news/story/7331/5287493 盟國 2 428
## 4195 https://udn.com/news/story/7331/5287493 資金 2 428
## 4196 https://udn.com/news/story/7331/5287493 實現 2 428
## 4197 https://udn.com/news/story/7331/5287493 維護 2 428
## 4198 https://udn.com/news/story/7331/5287493 認為 2 428
## 4199 https://udn.com/news/story/7331/5287493 障礙 2 428
## 4200 https://udn.com/news/story/7331/5287493 摩擦 2 428
## 4201 https://udn.com/news/story/7331/5287493 衝突 2 428
## 4202 https://udn.com/news/story/7331/5287493 擁有 2 428
## 4203 https://udn.com/news/story/7331/5287493 雙方 2 428
## 4204 https://udn.com/news/story/7331/5287493 競爭 2 428
## 4205 https://udn.com/news/story/7331/5294249 一面 2 279
## 4206 https://udn.com/news/story/7331/5294249 一艘 2 279
## 4207 https://udn.com/news/story/7331/5294249 女王 2 279
## 4208 https://udn.com/news/story/7331/5294249 今年 2 279
## 4209 https://udn.com/news/story/7331/5294249 公約 2 279
## 4210 https://udn.com/news/story/7331/5294249 太平洋 2 279
## 4211 https://udn.com/news/story/7331/5294249 仲裁 2 279
## 4212 https://udn.com/news/story/7331/5294249 任務 2 279
## 4213 https://udn.com/news/story/7331/5294249 伊麗莎白 2 279
## 4214 https://udn.com/news/story/7331/5294249 印太 2 279
## 4215 https://udn.com/news/story/7331/5294249 印度 2 279
## 4216 https://udn.com/news/story/7331/5294249 地區 2 279
## 4217 https://udn.com/news/story/7331/5294249 存在 2 279
## 4218 https://udn.com/news/story/7331/5294249 安全 2 279
## 4219 https://udn.com/news/story/7331/5294249 自由 2 279
## 4220 https://udn.com/news/story/7331/5294249 官員 2 279
## 4221 https://udn.com/news/story/7331/5294249 表示 2 279
## 4222 https://udn.com/news/story/7331/5294249 南中國海 2 279
## 4223 https://udn.com/news/story/7331/5294249 建立 2 279
## 4224 https://udn.com/news/story/7331/5294249 指出 2 279
## 4225 https://udn.com/news/story/7331/5294249 春天 2 279
## 4226 https://udn.com/news/story/7331/5294249 活動 2 279
## 4227 https://udn.com/news/story/7331/5294249 島嶼 2 279
## 4228 https://udn.com/news/story/7331/5294249 海洋法 2 279
## 4229 https://udn.com/news/story/7331/5294249 海域 2 279
## 4230 https://udn.com/news/story/7331/5294249 航空母艦 2 279
## 4231 https://udn.com/news/story/7331/5294249 區域 2 279
## 4232 https://udn.com/news/story/7331/5294249 崔洪建 2 279
## 4233 https://udn.com/news/story/7331/5294249 規則 2 279
## 4234 https://udn.com/news/story/7331/5294249 這艘 2 279
## 4235 https://udn.com/news/story/7331/5294249 朝鮮半島 2 279
## 4236 https://udn.com/news/story/7331/5294249 開赴 2 279
## 4237 https://udn.com/news/story/7331/5294249 想要 2 279
## 4238 https://udn.com/news/story/7331/5294249 路線 2 279
## 4239 https://udn.com/news/story/7331/5294249 預定 2 279
## 4240 https://udn.com/news/story/7331/5294249 對此 2 279
## 4241 https://udn.com/news/story/7331/5294249 影響 2 279
## 4242 https://udn.com/news/story/7331/5294249 戰鬥 2 279
## 4243 https://udn.com/news/story/7331/5294249 擁有 2 279
## 4244 https://udn.com/news/story/7331/5294249 澳洲 2 279
## 4245 https://udn.com/news/story/7331/5294249 環球時報 2 279
## 4246 https://udn.com/news/story/7331/5294249 聯合國 2 279
## 4247 https://udn.com/news/story/7331/5301066 一些 2 270
## 4248 https://udn.com/news/story/7331/5301066 不要 2 270
## 4249 https://udn.com/news/story/7331/5301066 出席 2 270
## 4250 https://udn.com/news/story/7331/5301066 外媒 2 270
## 4251 https://udn.com/news/story/7331/5301066 希望 2 270
## 4252 https://udn.com/news/story/7331/5301066 沒有 2 270
## 4253 https://udn.com/news/story/7331/5301066 始終 2 270
## 4254 https://udn.com/news/story/7331/5301066 空間 2 270
## 4255 https://udn.com/news/story/7331/5301066 恪守 2 270
## 4256 https://udn.com/news/story/7331/5301066 政治 2 270
## 4257 https://udn.com/news/story/7331/5301066 政客 2 270
## 4258 https://udn.com/news/story/7331/5301066 看待 2 270
## 4259 https://udn.com/news/story/7331/5301066 原則 2 270
## 4260 https://udn.com/news/story/7331/5301066 涉及 2 270
## 4261 https://udn.com/news/story/7331/5301066 破壞 2 270
## 4262 https://udn.com/news/story/7331/5301066 退讓 2 270
## 4263 https://udn.com/news/story/7331/5301066 國家 2 270
## 4264 https://udn.com/news/story/7331/5301066 堅稱 2 270
## 4265 https://udn.com/news/story/7331/5301066 意識形態 2 270
## 4266 https://udn.com/news/story/7331/5301066 會議 2 270
## 4267 https://udn.com/news/story/7331/5301066 操弄 2 270
## 4268 https://udn.com/news/story/7331/5309836 大陸 2 100
## 4269 https://udn.com/news/story/7331/5309836 水域 2 100
## 4270 https://udn.com/news/story/7331/5309836 沙利文 2 100
## 4271 https://udn.com/news/story/7331/5309836 官員 2 100
## 4272 https://udn.com/news/story/7331/5309836 林肯 2 100
## 4273 https://udn.com/news/story/7331/5309836 南海 2 100
## 4274 https://udn.com/news/story/7331/5309836 宣布 2 100
## 4275 https://udn.com/news/story/7331/5309836 海事局 2 100
## 4276 https://udn.com/news/story/7331/5309836 問題 2 100
## 4277 https://udn.com/news/story/7331/5309836 將於 2 100
## 4278 https://udn.com/news/story/7331/5309836 進行 2 100
## 4279 https://udn.com/news/story/7331/5309836 雙方 2 100
## 4280 https://udn.com/news/story/7331/5358554 下旬 2 86
## 4281 https://udn.com/news/story/7331/5358554 大陸 2 86
## 4282 https://udn.com/news/story/7331/5358554 中方 2 86
## 4283 https://udn.com/news/story/7331/5358554 主權 2 86
## 4284 https://udn.com/news/story/7331/5358554 附近 2 86
## 4285 https://udn.com/news/story/7331/5358554 海域 2 86
## 4286 https://udn.com/news/story/7331/5358554 漁船 2 86
## 4287 https://udn.com/news/story/7331/5359369 大陸 2 121
## 4288 https://udn.com/news/story/7331/5359369 不要 2 121
## 4289 https://udn.com/news/story/7331/5359369 引述 2 121
## 4290 https://udn.com/news/story/7331/5359369 汶萊 2 121
## 4291 https://udn.com/news/story/7331/5359369 海軍 2 121
## 4292 https://udn.com/news/story/7331/5359369 航經 2 121
## 4293 https://udn.com/news/story/7331/5359369 國家 2 121
## 4294 https://udn.com/news/story/7331/5359369 媒體 2 121
## 4295 https://udn.com/news/story/7331/5359369 發言人 2 121
## 4296 https://udn.com/news/story/7331/5359369 感知 2 121
## 4297 https://udn.com/news/story/7331/5359369 態勢 2 121
## 4298 https://udn.com/news/story/7331/5359369 戰略 2 121
## 4299 https://udn.com/news/story/7331/5365152 中國 2 217
## 4300 https://udn.com/news/story/7331/5365152 日本 2 217
## 4301 https://udn.com/news/story/7331/5365152 出現 2 217
## 4302 https://udn.com/news/story/7331/5365152 北京大學 2 217
## 4303 https://udn.com/news/story/7331/5365152 安全 2 217
## 4304 https://udn.com/news/story/7331/5365152 明顯 2 217
## 4305 https://udn.com/news/story/7331/5365152 長江口 2 217
## 4306 https://udn.com/news/story/7331/5365152 活動 2 217
## 4307 https://udn.com/news/story/7331/5365152 研究所 2 217
## 4308 https://udn.com/news/story/7331/5365152 軍機 2 217
## 4309 https://udn.com/news/story/7331/5365152 凌晨 2 217
## 4310 https://udn.com/news/story/7331/5365152 海洋 2 217
## 4311 https://udn.com/news/story/7331/5365152 神盾 2 217
## 4312 https://udn.com/news/story/7331/5365152 航行 2 217
## 4313 https://udn.com/news/story/7331/5365152 針對性 2 217
## 4314 https://udn.com/news/story/7331/5365152 駛入 2 217
## 4315 https://udn.com/news/story/7331/5365152 頻頻 2 217
## 4316 https://udn.com/news/story/7331/5365152 艦隊 2 217
## 4317 https://udn.com/news/story/7331/5388998 一段時間 2 126
## 4318 https://udn.com/news/story/7331/5388998 上述 2 126
## 4319 https://udn.com/news/story/7331/5388998 大陸 2 126
## 4320 https://udn.com/news/story/7331/5388998 列島 2 126
## 4321 https://udn.com/news/story/7331/5388998 早上 2 126
## 4322 https://udn.com/news/story/7331/5388998 每天 2 126
## 4323 https://udn.com/news/story/7331/5388998 南澎 2 126
## 4324 https://udn.com/news/story/7331/5388998 活動 2 126
## 4325 https://udn.com/news/story/7331/5388998 美國 2 126
## 4326 https://udn.com/news/story/7331/5388998 軍事 2 126
## 4327 https://udn.com/news/story/7331/5388998 時至 2 126
## 4328 https://udn.com/news/story/7331/5388998 海事局 2 126
## 4329 https://udn.com/news/story/7331/5388998 發布 2 126
## 4330 https://udn.com/news/story/7331/5388998 實戰 2 126
## 4331 https://udn.com/news/story/7331/5388998 整個 2 126
## 4332 https://udn.com/news/story/7331/5393116 一架 2 100
## 4333 https://udn.com/news/story/7331/5393116 作業 2 100
## 4334 https://udn.com/news/story/7331/5393116 美國空軍 2 100
## 4335 https://udn.com/news/story/7331/5393116 偵探 2 100
## 4336 https://udn.com/news/story/7331/5393116 偵察 2 100
## 4337 https://udn.com/news/story/7331/5393116 新華網 2 100
## 4338 https://udn.com/news/story/7331/5393116 廣東 2 100
## 4339 https://udn.com/news/story/7331/5401625 一些 2 202
## 4340 https://udn.com/news/story/7331/5401625 民事 2 202
## 4341 https://udn.com/news/story/7331/5401625 因素 2 202
## 4342 https://udn.com/news/story/7331/5401625 存今 2 202
## 4343 https://udn.com/news/story/7331/5401625 利用 2 202
## 4344 https://udn.com/news/story/7331/5401625 吳士存 2 202
## 4345 https://udn.com/news/story/7331/5401625 形勢 2 202
## 4346 https://udn.com/news/story/7331/5401625 服務 2 202
## 4347 https://udn.com/news/story/7331/5401625 東協 2 202
## 4348 https://udn.com/news/story/7331/5401625 表示 2 202
## 4349 https://udn.com/news/story/7331/5401625 疫情 2 202
## 4350 https://udn.com/news/story/7331/5401625 軍事 2 202
## 4351 https://udn.com/news/story/7331/5401625 海上 2 202
## 4352 https://udn.com/news/story/7331/5401625 秩序 2 202
## 4353 https://udn.com/news/story/7331/5401625 推動 2 202
## 4354 https://udn.com/news/story/7331/5401625 進行 2 202
## 4355 https://udn.com/news/story/7331/5401625 準則 2 202
## 4356 https://udn.com/news/story/7331/5401625 磋商 2 202
## 4357 https://udn.com/news/story/7331/5401625 論壇 2 202
## 4358 https://udn.com/news/story/7331/5401625 戰略 2 202
## 4359 https://udn.com/news/story/7331/5404677 上午 2 102
## 4360 https://udn.com/news/story/7331/5404677 下午 2 102
## 4361 https://udn.com/news/story/7331/5404677 中沙 2 102
## 4362 https://udn.com/news/story/7331/5404677 今日 2 102
## 4363 https://udn.com/news/story/7331/5404677 巴士海峽 2 102
## 4364 https://udn.com/news/story/7331/5404677 西沙 2 102
## 4365 https://udn.com/news/story/7331/5404677 抵近 2 102
## 4366 https://udn.com/news/story/7331/5404677 南沙 2 102
## 4367 https://udn.com/news/story/7331/5404677 活動 2 102
## 4368 https://udn.com/news/story/7331/5404677 海南 2 102
## 4369 https://udn.com/news/story/7331/5404677 起飛 2 102
## 4370 https://udn.com/news/story/7331/5404677 進行 2 102
## 4371 https://udn.com/news/story/7331/5404677 電子 2 102
## 4372 https://udn.com/news/story/7331/5404677 廣東 2 102
## 4373 https://udn.com/news/story/7331/5404677 離開 2 102
## 4374 https://udn.com/news/story/7332/4388480 包括 2 184
## 4375 https://udn.com/news/story/7332/4388480 囤積 2 184
## 4376 https://udn.com/news/story/7332/4388480 武漢 2 184
## 4377 https://udn.com/news/story/7332/4388480 表示 2 184
## 4378 https://udn.com/news/story/7332/4388480 封閉 2 184
## 4379 https://udn.com/news/story/7332/4388480 昨天 2 184
## 4380 https://udn.com/news/story/7332/4388480 疫情 2 184
## 4381 https://udn.com/news/story/7332/4388480 消殺 2 184
## 4382 https://udn.com/news/story/7332/4388480 酒店 2 184
## 4383 https://udn.com/news/story/7332/4388480 商鋪 2 184
## 4384 https://udn.com/news/story/7332/4388480 將被 2 184
## 4385 https://udn.com/news/story/7332/4388480 清理 2 184
## 4386 https://udn.com/news/story/7332/4388480 清潔 2 184
## 4387 https://udn.com/news/story/7332/4388480 貨物 2 184
## 4388 https://udn.com/news/story/7332/4388480 通道 2 184
## 4389 https://udn.com/news/story/7332/4388480 進入 2 184
## 4390 https://udn.com/news/story/7332/4388480 整理 2 184
## 4391 https://udn.com/news/story/7332/4388480 爆發 2 184
## 4392 https://udn.com/news/story/7332/4388480 關閉 2 184
## 4393 https://udn.com/news/story/7332/4591030 一直 2 126
## 4394 https://udn.com/news/story/7332/4591030 下水道 2 126
## 4395 https://udn.com/news/story/7332/4591030 已經 2 126
## 4396 https://udn.com/news/story/7332/4591030 月初 2 126
## 4397 https://udn.com/news/story/7332/4591030 市場 2 126
## 4398 https://udn.com/news/story/7332/4591030 批發市場 2 126
## 4399 https://udn.com/news/story/7332/4591030 並非 2 126
## 4400 https://udn.com/news/story/7332/4591030 南海 2 126
## 4401 https://udn.com/news/story/7332/4591030 很多 2 126
## 4402 https://udn.com/news/story/7332/4591030 疫情 2 126
## 4403 https://udn.com/news/story/7332/4591030 海鮮 2 126
## 4404 https://udn.com/news/story/7332/4591030 源頭 2 126
## 4405 https://udn.com/news/story/7332/4591030 認知 2 126
## 4406 https://udn.com/news/story/7332/4591030 廢水 2 126
## 4407 https://udn.com/news/story/7332/4591030 檢出 2 126
## 4408 https://udn.com/news/story/7332/4591030 環境 2 126
## 4409 https://udn.com/news/story/7332/4876640 上產 2 280
## 4410 https://udn.com/news/story/7332/4876640 水深 2 280
## 4411 https://udn.com/news/story/7332/4876640 可達 2 280
## 4412 https://udn.com/news/story/7332/4876640 平台 2 280
## 4413 https://udn.com/news/story/7332/4876640 年產量 2 280
## 4414 https://udn.com/news/story/7332/4876640 位於 2 280
## 4415 https://udn.com/news/story/7332/4876640 技術 2 280
## 4416 https://udn.com/news/story/7332/4876640 投產 2 280
## 4417 https://udn.com/news/story/7332/4876640 每年 2 280
## 4418 https://udn.com/news/story/7332/4876640 取材自 2 280
## 4419 https://udn.com/news/story/7332/4876640 東部 2 280
## 4420 https://udn.com/news/story/7332/4876640 油氣田 2 280
## 4421 https://udn.com/news/story/7332/4876640 保障 2 280
## 4422 https://udn.com/news/story/7332/4876640 建設 2 280
## 4423 https://udn.com/news/story/7332/4876640 挑戰 2 280
## 4424 https://udn.com/news/story/7332/4876640 負責人 2 280
## 4425 https://udn.com/news/story/7332/4876640 連續 2 280
## 4426 https://udn.com/news/story/7332/4876640 萬噸 2 280
## 4427 https://udn.com/news/story/7332/4876640 遇到 2 280
## 4428 https://udn.com/news/story/7332/4876640 預計 2 280
## 4429 https://udn.com/news/story/7333/4665178 中旬 2 77
## 4430 https://udn.com/news/story/7333/4665178 日本共同社 2 77
## 4431 https://udn.com/news/story/7333/4665178 打仗 2 77
## 4432 https://udn.com/news/story/7333/4665178 目標 2 77
## 4433 https://udn.com/news/story/7333/4665178 西沙 2 77
## 4434 https://udn.com/news/story/7333/4665178 軍事 2 77
## 4435 https://udn.com/news/story/7333/4665178 訓練 2 77
## 4436 https://udn.com/news/story/7333/4665178 將在 2 77
## 4437 https://udn.com/news/story/7333/4665178 登陸 2 77
## 4438 https://udn.com/news/story/7333/4665178 進行 2 77
## 4439 https://udn.com/news/story/7333/4665178 練兵 2 77
## 4440 https://udn.com/news/story/7333/4665178 獨家報導 2 77
## 4441 https://udn.com/news/story/7333/4665178 舉行 2 77
## 4442 https://udn.com/news/story/7333/4704558 中國 2 145
## 4443 https://udn.com/news/story/7333/4704558 世界 2 145
## 4444 https://udn.com/news/story/7333/4704558 外交部 2 145
## 4445 https://udn.com/news/story/7333/4704558 和平 2 145
## 4446 https://udn.com/news/story/7333/4704558 美國 2 145
## 4447 https://udn.com/news/story/7333/4704558 破壞 2 145
## 4448 https://udn.com/news/story/7333/4704558 做法 2 145
## 4449 https://udn.com/news/story/7333/4704558 維護 2 145
## 4450 https://udn.com/news/story/7333/4704558 霸道 2 145
## 4451 https://udn.com/news/story/7333/4813542 人工島 2 97
## 4452 https://udn.com/news/story/7333/4813542 正常 2 97
## 4453 https://udn.com/news/story/7333/4813542 宣布 2 97
## 4454 https://udn.com/news/story/7333/4813542 建設 2 97
## 4455 https://udn.com/news/story/7333/4813542 國土 2 97
## 4456 https://udn.com/news/story/7333/4813542 國家 2 97
## 4457 https://udn.com/news/story/7333/4813542 設施 2 97
## 4458 https://udn.com/news/story/7333/4813542 維護 2 97
## 4459 https://udn.com/news/story/7333/5401465 不能 2 154
## 4460 https://udn.com/news/story/7333/5401465 不穩定性 2 154
## 4461 https://udn.com/news/story/7333/5401465 主題 2 154
## 4462 https://udn.com/news/story/7333/5401465 出發 2 154
## 4463 https://udn.com/news/story/7333/5401465 合作 2 154
## 4464 https://udn.com/news/story/7333/5401465 亞洲 2 154
## 4465 https://udn.com/news/story/7333/5401465 思路 2 154
## 4466 https://udn.com/news/story/7333/5401465 指出 2 154
## 4467 https://udn.com/news/story/7333/5401465 挑撥 2 154
## 4468 https://udn.com/news/story/7333/5401465 致詞 2 154
## 4469 https://udn.com/news/story/7333/5401465 個別 2 154
## 4470 https://udn.com/news/story/7333/5401465 高調 2 154
## 4471 https://udn.com/news/story/7333/5401465 國家 2 154
## 4472 https://udn.com/news/story/7333/5401465 帶來 2 154
## 4473 https://udn.com/news/story/7333/5401465 接入 2 154
## 4474 https://udn.com/news/story/7333/5401465 推進 2 154
## 4475 https://udn.com/news/story/7333/5401465 博鰲 2 154
## 4476 https://udn.com/news/story/7333/5401465 確定 2 154
## 4477 https://udn.com/news/story/7333/5401465 舉行 2 154
## 4478 https://udn.com/news/story/7333/5401465 關係 2 154
## 4479 https://udn.com/news/story/120675/4281503 中度 1 264
## 4480 https://udn.com/news/story/120675/4281503 公共場所 1 264
## 4481 https://udn.com/news/story/120675/4281503 分享 1 264
## 4482 https://udn.com/news/story/120675/4281503 天內 1 264
## 4483 https://udn.com/news/story/120675/4281503 手部 1 264
## 4484 https://udn.com/news/story/120675/4281503 日晚 1 264
## 4485 https://udn.com/news/story/120675/4281503 世界衛生組織 1 264
## 4486 https://udn.com/news/story/120675/4281503 乏力 1 264
## 4487 https://udn.com/news/story/120675/4281503 加強 1 264
## 4488 https://udn.com/news/story/120675/4281503 另據 1 264
## 4489 https://udn.com/news/story/120675/4281503 可能 1 264
## 4490 https://udn.com/news/story/120675/4281503 市場 1 264
## 4491 https://udn.com/news/story/120675/4281503 本報 1 264
## 4492 https://udn.com/news/story/120675/4281503 目前 1 264
## 4493 https://udn.com/news/story/120675/4281503 休市 1 264
## 4494 https://udn.com/news/story/120675/4281503 全市 1 264
## 4495 https://udn.com/news/story/120675/4281503 全身 1 264
## 4496 https://udn.com/news/story/120675/4281503 好轉 1 264
## 4497 https://udn.com/news/story/120675/4281503 至今 1 264
## 4498 https://udn.com/news/story/120675/4281503 伴有 1 264
## 4499 https://udn.com/news/story/120675/4281503 住院 1 264
## 4500 https://udn.com/news/story/120675/4281503 均屬 1 264
## 4501 https://udn.com/news/story/120675/4281503 批發市場 1 264
## 4502 https://udn.com/news/story/120675/4281503 抗感染 1 264
## 4503 https://udn.com/news/story/120675/4281503 男性 1 264
## 4504 https://udn.com/news/story/120675/4281503 肝病 1 264
## 4505 https://udn.com/news/story/120675/4281503 防病 1 264
## 4506 https://udn.com/news/story/120675/4281503 並對 1 264
## 4507 https://udn.com/news/story/120675/4281503 並與 1 264
## 4508 https://udn.com/news/story/120675/4281503 初步 1 264
## 4509 https://udn.com/news/story/120675/4281503 呼吸 1 264
## 4510 https://udn.com/news/story/120675/4281503 呼吸困難 1 264
## 4511 https://udn.com/news/story/120675/4281503 呼吸科 1 264
## 4512 https://udn.com/news/story/120675/4281503 呼吸衰竭 1 264
## 4513 https://udn.com/news/story/120675/4281503 官網 1 264
## 4514 https://udn.com/news/story/120675/4281503 尚未 1 264
## 4515 https://udn.com/news/story/120675/4281503 明確 1 264
## 4516 https://udn.com/news/story/120675/4281503 服務提供者 1 264
## 4517 https://udn.com/news/story/120675/4281503 武漢市 1 264
## 4518 https://udn.com/news/story/120675/4281503 治癒 1 264
## 4519 https://udn.com/news/story/120675/4281503 直接 1 264
## 4520 https://udn.com/news/story/120675/4281503 表現 1 264
## 4521 https://udn.com/news/story/120675/4281503 近日 1 264
## 4522 https://udn.com/news/story/120675/4281503 保持良好 1 264
## 4523 https://udn.com/news/story/120675/4281503 前往 1 264
## 4524 https://udn.com/news/story/120675/4281503 南韓 1 264
## 4525 https://udn.com/news/story/120675/4281503 指導 1 264
## 4526 https://udn.com/news/story/120675/4281503 染上 1 264
## 4527 https://udn.com/news/story/120675/4281503 疫情 1 264
## 4528 https://udn.com/news/story/120675/4281503 研判 1 264
## 4529 https://udn.com/news/story/120675/4281503 美國之音 1 264
## 4530 https://udn.com/news/story/120675/4281503 胡克 1 264
## 4531 https://udn.com/news/story/120675/4281503 英國人 1 264
## 4532 https://udn.com/news/story/120675/4281503 赴華 1 264
## 4533 https://udn.com/news/story/120675/4281503 限制 1 264
## 4534 https://udn.com/news/story/120675/4281503 香港政府 1 264
## 4535 https://udn.com/news/story/120675/4281503 個人衛生 1 264
## 4536 https://udn.com/news/story/120675/4281503 旅遊 1 264
## 4537 https://udn.com/news/story/120675/4281503 核酸 1 264
## 4538 https://udn.com/news/story/120675/4281503 特別 1 264
## 4539 https://udn.com/news/story/120675/4281503 疾病 1 264
## 4540 https://udn.com/news/story/120675/4281503 病原學 1 264
## 4541 https://udn.com/news/story/120675/4281503 衰竭 1 264
## 4542 https://udn.com/news/story/120675/4281503 訊息 1 264
## 4543 https://udn.com/news/story/120675/4281503 針對 1 264
## 4544 https://udn.com/news/story/120675/4281503 院者 1 264
## 4545 https://udn.com/news/story/120675/4281503 乾咳 1 264
## 4546 https://udn.com/news/story/120675/4281503 專家 1 264
## 4547 https://udn.com/news/story/120675/4281503 常年 1 264
## 4548 https://udn.com/news/story/120675/4281503 常見 1 264
## 4549 https://udn.com/news/story/120675/4281503 得到 1 264
## 4550 https://udn.com/news/story/120675/4281503 患有 1 264
## 4551 https://udn.com/news/story/120675/4281503 採購 1 264
## 4552 https://udn.com/news/story/120675/4281503 控制 1 264
## 4553 https://udn.com/news/story/120675/4281503 措施 1 264
## 4554 https://udn.com/news/story/120675/4281503 救治 1 264
## 4555 https://udn.com/news/story/120675/4281503 救護 1 264
## 4556 https://udn.com/news/story/120675/4281503 教授 1 264
## 4557 https://udn.com/news/story/120675/4281503 清潔 1 264
## 4558 https://udn.com/news/story/120675/4281503 現有 1 264
## 4559 https://udn.com/news/story/120675/4281503 貨物 1 264
## 4560 https://udn.com/news/story/120675/4281503 這名 1 264
## 4561 https://udn.com/news/story/120675/4281503 這次 1 264
## 4562 https://udn.com/news/story/120675/4281503 通知 1 264
## 4563 https://udn.com/news/story/120675/4281503 部分 1 264
## 4564 https://udn.com/news/story/120675/4281503 陸續 1 264
## 4565 https://udn.com/news/story/120675/4281503 尋求 1 264
## 4566 https://udn.com/news/story/120675/4281503 就醫 1 264
## 4567 https://udn.com/news/story/120675/4281503 循環 1 264
## 4568 https://udn.com/news/story/120675/4281503 提示 1 264
## 4569 https://udn.com/news/story/120675/4281503 最初 1 264
## 4570 https://udn.com/news/story/120675/4281503 期間 1 264
## 4571 https://udn.com/news/story/120675/4281503 湖北省人民醫院 1 264
## 4572 https://udn.com/news/story/120675/4281503 發出 1 264
## 4573 https://udn.com/news/story/120675/4281503 發布 1 264
## 4574 https://udn.com/news/story/120675/4281503 發病 1 264
## 4575 https://udn.com/news/story/120675/4281503 發熱 1 264
## 4576 https://udn.com/news/story/120675/4281503 給予 1 264
## 4577 https://udn.com/news/story/120675/4281503 診斷 1 264
## 4578 https://udn.com/news/story/120675/4281503 貿易 1 264
## 4579 https://udn.com/news/story/120675/4281503 進一步 1 264
## 4580 https://udn.com/news/story/120675/4281503 陽性 1 264
## 4581 https://udn.com/news/story/120675/4281503 傳人 1 264
## 4582 https://udn.com/news/story/120675/4281503 搶救無效 1 264
## 4583 https://udn.com/news/story/120675/4281503 新加坡 1 264
## 4584 https://udn.com/news/story/120675/4281503 新聞網 1 264
## 4585 https://udn.com/news/story/120675/4281503 經歷 1 264
## 4586 https://udn.com/news/story/120675/4281503 農貿市場 1 264
## 4587 https://udn.com/news/story/120675/4281503 遊覽 1 264
## 4588 https://udn.com/news/story/120675/4281503 預防措施 1 264
## 4589 https://udn.com/news/story/120675/4281503 實行 1 264
## 4590 https://udn.com/news/story/120675/4281503 對華 1 264
## 4591 https://udn.com/news/story/120675/4281503 慢性 1 264
## 4592 https://udn.com/news/story/120675/4281503 疑似病例 1 264
## 4593 https://udn.com/news/story/120675/4281503 管理 1 264
## 4594 https://udn.com/news/story/120675/4281503 綜合 1 264
## 4595 https://udn.com/news/story/120675/4281503 輕到 1 264
## 4596 https://udn.com/news/story/120675/4281503 衛健委 1 264
## 4597 https://udn.com/news/story/120675/4281503 糖尿病 1 264
## 4598 https://udn.com/news/story/120675/4281503 檢測 1 264
## 4599 https://udn.com/news/story/120675/4281503 環境衛生 1 264
## 4600 https://udn.com/news/story/120675/4281503 總共 1 264
## 4601 https://udn.com/news/story/120675/4281503 聯合報 1 264
## 4602 https://udn.com/news/story/120675/4281503 臨床 1 264
## 4603 https://udn.com/news/story/120675/4281503 簡單 1 264
## 4604 https://udn.com/news/story/120675/4281503 醫院 1 264
## 4605 https://udn.com/news/story/120675/4281503 醫務人員 1 264
## 4606 https://udn.com/news/story/120675/4281503 曝出 1 264
## 4607 https://udn.com/news/story/121687/5199268 一如既往 1 257
## 4608 https://udn.com/news/story/121687/5199268 一些 1 257
## 4609 https://udn.com/news/story/121687/5199268 一輪 1 257
## 4610 https://udn.com/news/story/121687/5199268 三門峽 1 257
## 4611 https://udn.com/news/story/121687/5199268 上午 1 257
## 4612 https://udn.com/news/story/121687/5199268 上台 1 257
## 4613 https://udn.com/news/story/121687/5199268 下水 1 257
## 4614 https://udn.com/news/story/121687/5199268 大秀 1 257
## 4615 https://udn.com/news/story/121687/5199268 已於 1 257
## 4616 https://udn.com/news/story/121687/5199268 不利因素 1 257
## 4617 https://udn.com/news/story/121687/5199268 不斷 1 257
## 4618 https://udn.com/news/story/121687/5199268 之後 1 257
## 4619 https://udn.com/news/story/121687/5199268 分析 1 257
## 4620 https://udn.com/news/story/121687/5199268 升空 1 257
## 4621 https://udn.com/news/story/121687/5199268 巴士海峽 1 257
## 4622 https://udn.com/news/story/121687/5199268 引述 1 257
## 4623 https://udn.com/news/story/121687/5199268 火力 1 257
## 4624 https://udn.com/news/story/121687/5199268 火箭 1 257
## 4625 https://udn.com/news/story/121687/5199268 世界 1 257
## 4626 https://udn.com/news/story/121687/5199268 以來 1 257
## 4627 https://udn.com/news/story/121687/5199268 出動 1 257
## 4628 https://udn.com/news/story/121687/5199268 出現 1 257
## 4629 https://udn.com/news/story/121687/5199268 包括 1 257
## 4630 https://udn.com/news/story/121687/5199268 卡申 1 257
## 4631 https://udn.com/news/story/121687/5199268 去年 1 257
## 4632 https://udn.com/news/story/121687/5199268 另據 1 257
## 4633 https://udn.com/news/story/121687/5199268 可能 1 257
## 4634 https://udn.com/news/story/121687/5199268 可疑 1 257
## 4635 https://udn.com/news/story/121687/5199268 外媒 1 257
## 4636 https://udn.com/news/story/121687/5199268 央視 1 257
## 4637 https://udn.com/news/story/121687/5199268 平衡 1 257
## 4638 https://udn.com/news/story/121687/5199268 打擊 1 257
## 4639 https://udn.com/news/story/121687/5199268 未來 1 257
## 4640 https://udn.com/news/story/121687/5199268 正在 1 257
## 4641 https://udn.com/news/story/121687/5199268 交替 1 257
## 4642 https://udn.com/news/story/121687/5199268 先進 1 257
## 4643 https://udn.com/news/story/121687/5199268 全開 1 257
## 4644 https://udn.com/news/story/121687/5199268 列裝 1 257
## 4645 https://udn.com/news/story/121687/5199268 印證 1 257
## 4646 https://udn.com/news/story/121687/5199268 地位 1 257
## 4647 https://udn.com/news/story/121687/5199268 多個 1 257
## 4648 https://udn.com/news/story/121687/5199268 此前 1 257
## 4649 https://udn.com/news/story/121687/5199268 考慮 1 257
## 4650 https://udn.com/news/story/121687/5199268 肌肉 1 257
## 4651 https://udn.com/news/story/121687/5199268 西安 1 257
## 4652 https://udn.com/news/story/121687/5199268 低空 1 257
## 4653 https://udn.com/news/story/121687/5199268 克服 1 257
## 4654 https://udn.com/news/story/121687/5199268 利用 1 257
## 4655 https://udn.com/news/story/121687/5199268 孝感 1 257
## 4656 https://udn.com/news/story/121687/5199268 技術 1 257
## 4657 https://udn.com/news/story/121687/5199268 更大 1 257
## 4658 https://udn.com/news/story/121687/5199268 每隔 1 257
## 4659 https://udn.com/news/story/121687/5199268 沒有 1 257
## 4660 https://udn.com/news/story/121687/5199268 亞洲 1 257
## 4661 https://udn.com/news/story/121687/5199268 來襲 1 257
## 4662 https://udn.com/news/story/121687/5199268 例行 1 257
## 4663 https://udn.com/news/story/121687/5199268 夜空 1 257
## 4664 https://udn.com/news/story/121687/5199268 夜航 1 257
## 4665 https://udn.com/news/story/121687/5199268 岸上 1 257
## 4666 https://udn.com/news/story/121687/5199268 服役 1 257
## 4667 https://udn.com/news/story/121687/5199268 武漢 1 257
## 4668 https://udn.com/news/story/121687/5199268 沿用 1 257
## 4669 https://udn.com/news/story/121687/5199268 炒作 1 257
## 4670 https://udn.com/news/story/121687/5199268 表態 1 257
## 4671 https://udn.com/news/story/121687/5199268 迎難而上 1 257
## 4672 https://udn.com/news/story/121687/5199268 俄方 1 257
## 4673 https://udn.com/news/story/121687/5199268 俄美 1 257
## 4674 https://udn.com/news/story/121687/5199268 建造 1 257
## 4675 https://udn.com/news/story/121687/5199268 拜登 1 257
## 4676 https://udn.com/news/story/121687/5199268 指出 1 257
## 4677 https://udn.com/news/story/121687/5199268 活動 1 257
## 4678 https://udn.com/news/story/121687/5199268 重申 1 257
## 4679 https://udn.com/news/story/121687/5199268 時許 1 257
## 4680 https://udn.com/news/story/121687/5199268 時間 1 257
## 4681 https://udn.com/news/story/121687/5199268 株洲 1 257
## 4682 https://udn.com/news/story/121687/5199268 泰安 1 257
## 4683 https://udn.com/news/story/121687/5199268 能力 1 257
## 4684 https://udn.com/news/story/121687/5199268 能見度 1 257
## 4685 https://udn.com/news/story/121687/5199268 記者會 1 257
## 4686 https://udn.com/news/story/121687/5199268 側風 1 257
## 4687 https://udn.com/news/story/121687/5199268 問題 1 257
## 4688 https://udn.com/news/story/121687/5199268 國家 1 257
## 4689 https://udn.com/news/story/121687/5199268 將對 1 257
## 4690 https://udn.com/news/story/121687/5199268 專家 1 257
## 4691 https://udn.com/news/story/121687/5199268 常州 1 257
## 4692 https://udn.com/news/story/121687/5199268 強大 1 257
## 4693 https://udn.com/news/story/121687/5199268 強國 1 257
## 4694 https://udn.com/news/story/121687/5199268 掩護 1 257
## 4695 https://udn.com/news/story/121687/5199268 深圳 1 257
## 4696 https://udn.com/news/story/121687/5199268 深海 1 257
## 4697 https://udn.com/news/story/121687/5199268 深彈 1 257
## 4698 https://udn.com/news/story/121687/5199268 清除 1 257
## 4699 https://udn.com/news/story/121687/5199268 產生 1 257
## 4700 https://udn.com/news/story/121687/5199268 第二號 1 257
## 4701 https://udn.com/news/story/121687/5199268 組成 1 257
## 4702 https://udn.com/news/story/121687/5199268 組織 1 257
## 4703 https://udn.com/news/story/121687/5199268 通盤考慮 1 257
## 4704 https://udn.com/news/story/121687/5199268 連貫 1 257
## 4705 https://udn.com/news/story/121687/5199268 陸軍 1 257
## 4706 https://udn.com/news/story/121687/5199268 陸航 1 257
## 4707 https://udn.com/news/story/121687/5199268 媒體 1 257
## 4708 https://udn.com/news/story/121687/5199268 幾乎 1 257
## 4709 https://udn.com/news/story/121687/5199268 幾個 1 257
## 4710 https://udn.com/news/story/121687/5199268 掌握 1 257
## 4711 https://udn.com/news/story/121687/5199268 最終 1 257
## 4712 https://udn.com/news/story/121687/5199268 最新 1 257
## 4713 https://udn.com/news/story/121687/5199268 發言人 1 257
## 4714 https://udn.com/news/story/121687/5199268 發展 1 257
## 4715 https://udn.com/news/story/121687/5199268 視頻 1 257
## 4716 https://udn.com/news/story/121687/5199268 超越 1 257
## 4717 https://udn.com/news/story/121687/5199268 集團軍 1 257
## 4718 https://udn.com/news/story/121687/5199268 意味著 1 257
## 4719 https://udn.com/news/story/121687/5199268 搜索 1 257
## 4720 https://udn.com/news/story/121687/5199268 新浪網 1 257
## 4721 https://udn.com/news/story/121687/5199268 新聞 1 257
## 4722 https://udn.com/news/story/121687/5199268 經由 1 257
## 4723 https://udn.com/news/story/121687/5199268 解放軍 1 257
## 4724 https://udn.com/news/story/121687/5199268 電力系統 1 257
## 4725 https://udn.com/news/story/121687/5199268 圖像 1 257
## 4726 https://udn.com/news/story/121687/5199268 境外 1 257
## 4727 https://udn.com/news/story/121687/5199268 截圖 1 257
## 4728 https://udn.com/news/story/121687/5199268 綜合 1 257
## 4729 https://udn.com/news/story/121687/5199268 認為 1 257
## 4730 https://udn.com/news/story/121687/5199268 需求 1 257
## 4731 https://udn.com/news/story/121687/5199268 影響 1 257
## 4732 https://udn.com/news/story/121687/5199268 歐洲 1 257
## 4733 https://udn.com/news/story/121687/5199268 潛艇 1 257
## 4734 https://udn.com/news/story/121687/5199268 課目 1 257
## 4735 https://udn.com/news/story/121687/5199268 調整 1 257
## 4736 https://udn.com/news/story/121687/5199268 鞏固 1 257
## 4737 https://udn.com/news/story/121687/5199268 奮飛 1 257
## 4738 https://udn.com/news/story/121687/5199268 導彈 1 257
## 4739 https://udn.com/news/story/121687/5199268 擁有 1 257
## 4740 https://udn.com/news/story/121687/5199268 機型 1 257
## 4741 https://udn.com/news/story/121687/5199268 衡陽 1 257
## 4742 https://udn.com/news/story/121687/5199268 優勢 1 257
## 4743 https://udn.com/news/story/121687/5199268 擊落 1 257
## 4744 https://udn.com/news/story/121687/5199268 總統 1 257
## 4745 https://udn.com/news/story/121687/5199268 聯合 1 257
## 4746 https://udn.com/news/story/121687/5199268 舉行 1 257
## 4747 https://udn.com/news/story/121687/5199268 嚴寒 1 257
## 4748 https://udn.com/news/story/121687/5199268 艦隊 1 257
## 4749 https://udn.com/news/story/121687/5199268 艦艇 1 257
## 4750 https://udn.com/news/story/121687/5212213 一改 1 295
## 4751 https://udn.com/news/story/121687/5212213 一些 1 295
## 4752 https://udn.com/news/story/121687/5212213 一起 1 295
## 4753 https://udn.com/news/story/121687/5212213 了解 1 295
## 4754 https://udn.com/news/story/121687/5212213 上半年 1 295
## 4755 https://udn.com/news/story/121687/5212213 士氣 1 295
## 4756 https://udn.com/news/story/121687/5212213 大西洋 1 295
## 4757 https://udn.com/news/story/121687/5212213 不在 1 295
## 4758 https://udn.com/news/story/121687/5212213 中有 1 295
## 4759 https://udn.com/news/story/121687/5212213 中東地區 1 295
## 4760 https://udn.com/news/story/121687/5212213 之前 1 295
## 4761 https://udn.com/news/story/121687/5212213 今年 1 295
## 4762 https://udn.com/news/story/121687/5212213 允許 1 295
## 4763 https://udn.com/news/story/121687/5212213 公約 1 295
## 4764 https://udn.com/news/story/121687/5212213 主張 1 295
## 4765 https://udn.com/news/story/121687/5212213 代表 1 295
## 4766 https://udn.com/news/story/121687/5212213 加劇 1 295
## 4767 https://udn.com/news/story/121687/5212213 北大西洋公約組織 1 295
## 4768 https://udn.com/news/story/121687/5212213 北京 1 295
## 4769 https://udn.com/news/story/121687/5212213 北約 1 295
## 4770 https://udn.com/news/story/121687/5212213 去年 1 295
## 4771 https://udn.com/news/story/121687/5212213 外交政策 1 295
## 4772 https://udn.com/news/story/121687/5212213 打氣 1 295
## 4773 https://udn.com/news/story/121687/5212213 白宮 1 295
## 4774 https://udn.com/news/story/121687/5212213 立場 1 295
## 4775 https://udn.com/news/story/121687/5212213 伊朗 1 295
## 4776 https://udn.com/news/story/121687/5212213 印太 1 295
## 4777 https://udn.com/news/story/121687/5212213 印度 1 295
## 4778 https://udn.com/news/story/121687/5212213 各地 1 295
## 4779 https://udn.com/news/story/121687/5212213 因其 1 295
## 4780 https://udn.com/news/story/121687/5212213 安全 1 295
## 4781 https://udn.com/news/story/121687/5212213 托騰 1 295
## 4782 https://udn.com/news/story/121687/5212213 此類 1 295
## 4783 https://udn.com/news/story/121687/5212213 伯格 1 295
## 4784 https://udn.com/news/story/121687/5212213 決心 1 295
## 4785 https://udn.com/news/story/121687/5212213 決定 1 295
## 4786 https://udn.com/news/story/121687/5212213 防禦 1 295
## 4787 https://udn.com/news/story/121687/5212213 具體 1 295
## 4788 https://udn.com/news/story/121687/5212213 取得 1 295
## 4789 https://udn.com/news/story/121687/5212213 受益 1 295
## 4790 https://udn.com/news/story/121687/5212213 和澳洲 1 295
## 4791 https://udn.com/news/story/121687/5212213 東南亞 1 295
## 4792 https://udn.com/news/story/121687/5212213 武裝 1 295
## 4793 https://udn.com/news/story/121687/5212213 法國 1 295
## 4794 https://udn.com/news/story/121687/5212213 爭端 1 295
## 4795 https://udn.com/news/story/121687/5212213 表示同意 1 295
## 4796 https://udn.com/news/story/121687/5212213 表決 1 295
## 4797 https://udn.com/news/story/121687/5212213 長史 1 295
## 4798 https://udn.com/news/story/121687/5212213 俄羅斯 1 295
## 4799 https://udn.com/news/story/121687/5212213 保證 1 295
## 4800 https://udn.com/news/story/121687/5212213 信心 1 295
## 4801 https://udn.com/news/story/121687/5212213 前任 1 295
## 4802 https://udn.com/news/story/121687/5212213 前朝 1 295
## 4803 https://udn.com/news/story/121687/5212213 拜登 1 295
## 4804 https://udn.com/news/story/121687/5212213 持續 1 295
## 4805 https://udn.com/news/story/121687/5212213 指出 1 295
## 4806 https://udn.com/news/story/121687/5212213 挑戰 1 295
## 4807 https://udn.com/news/story/121687/5212213 美中 1 295
## 4808 https://udn.com/news/story/121687/5212213 美國國務院 1 295
## 4809 https://udn.com/news/story/121687/5212213 美菲 1 295
## 4810 https://udn.com/news/story/121687/5212213 背景 1 295
## 4811 https://udn.com/news/story/121687/5212213 胡塞 1 295
## 4812 https://udn.com/news/story/121687/5212213 若能 1 295
## 4813 https://udn.com/news/story/121687/5212213 英國 1 295
## 4814 https://udn.com/news/story/121687/5212213 迫害 1 295
## 4815 https://udn.com/news/story/121687/5212213 首場 1 295
## 4816 https://udn.com/news/story/121687/5212213 員工 1 295
## 4817 https://udn.com/news/story/121687/5212213 振興 1 295
## 4818 https://udn.com/news/story/121687/5212213 氣候 1 295
## 4819 https://udn.com/news/story/121687/5212213 泰國 1 295
## 4820 https://udn.com/news/story/121687/5212213 海洋法 1 295
## 4821 https://udn.com/news/story/121687/5212213 破壞 1 295
## 4822 https://udn.com/news/story/121687/5212213 秘書 1 295
## 4823 https://udn.com/news/story/121687/5212213 討論 1 295
## 4824 https://udn.com/news/story/121687/5212213 做到 1 295
## 4825 https://udn.com/news/story/121687/5212213 區域 1 295
## 4826 https://udn.com/news/story/121687/5212213 國安 1 295
## 4827 https://udn.com/news/story/121687/5212213 國會議員 1 295
## 4828 https://udn.com/news/story/121687/5212213 將來 1 295
## 4829 https://udn.com/news/story/121687/5212213 將與 1 295
## 4830 https://udn.com/news/story/121687/5212213 帶來 1 295
## 4831 https://udn.com/news/story/121687/5212213 條約 1 295
## 4832 https://udn.com/news/story/121687/5212213 第一 1 295
## 4833 https://udn.com/news/story/121687/5212213 組織 1 295
## 4834 https://udn.com/news/story/121687/5212213 陸辛 1 295
## 4835 https://udn.com/news/story/121687/5212213 陸續 1 295
## 4836 https://udn.com/news/story/121687/5212213 提及 1 295
## 4837 https://udn.com/news/story/121687/5212213 提供援助 1 295
## 4838 https://udn.com/news/story/121687/5212213 發布 1 295
## 4839 https://udn.com/news/story/121687/5212213 發言人 1 295
## 4840 https://udn.com/news/story/121687/5212213 發表談話 1 295
## 4841 https://udn.com/news/story/121687/5212213 超過 1 295
## 4842 https://udn.com/news/story/121687/5212213 進展 1 295
## 4843 https://udn.com/news/story/121687/5212213 新冠肺炎 1 295
## 4844 https://udn.com/news/story/121687/5212213 新疆 1 295
## 4845 https://udn.com/news/story/121687/5212213 暖化 1 295
## 4846 https://udn.com/news/story/121687/5212213 會議 1 295
## 4847 https://udn.com/news/story/121687/5212213 當中 1 295
## 4848 https://udn.com/news/story/121687/5212213 盟友 1 295
## 4849 https://udn.com/news/story/121687/5212213 盟邦 1 295
## 4850 https://udn.com/news/story/121687/5212213 葉門 1 295
## 4851 https://udn.com/news/story/121687/5212213 詢問 1 295
## 4852 https://udn.com/news/story/121687/5212213 電話 1 295
## 4853 https://udn.com/news/story/121687/5212213 夥伴 1 295
## 4854 https://udn.com/news/story/121687/5212213 對內 1 295
## 4855 https://udn.com/news/story/121687/5212213 構成 1 295
## 4856 https://udn.com/news/story/121687/5212213 盡其所能 1 295
## 4857 https://udn.com/news/story/121687/5212213 種族滅絕 1 295
## 4858 https://udn.com/news/story/121687/5212213 緊密 1 295
## 4859 https://udn.com/news/story/121687/5212213 領導人 1 295
## 4860 https://udn.com/news/story/121687/5212213 德國 1 295
## 4861 https://udn.com/news/story/121687/5212213 確保 1 295
## 4862 https://udn.com/news/story/121687/5212213 諸多 1 295
## 4863 https://udn.com/news/story/121687/5212213 親密 1 295
## 4864 https://udn.com/news/story/121687/5212213 選邊 1 295
## 4865 https://udn.com/news/story/121687/5212213 隨即 1 295
## 4866 https://udn.com/news/story/121687/5212213 優先 1 295
## 4867 https://udn.com/news/story/121687/5212213 壓力 1 295
## 4868 https://udn.com/news/story/121687/5212213 應對 1 295
## 4869 https://udn.com/news/story/121687/5212213 獲得 1 295
## 4870 https://udn.com/news/story/121687/5212213 聯繫 1 295
## 4871 https://udn.com/news/story/121687/5212213 聲索國 1 295
## 4872 https://udn.com/news/story/121687/5212213 舉行 1 295
## 4873 https://udn.com/news/story/121687/5212213 還與 1 295
## 4874 https://udn.com/news/story/121687/5212213 雙方 1 295
## 4875 https://udn.com/news/story/121687/5212213 雙邊 1 295
## 4876 https://udn.com/news/story/121687/5212213 關注 1 295
## 4877 https://udn.com/news/story/121687/5212213 龐培 1 295
## 4878 https://udn.com/news/story/121687/5212213 蘇利文 1 295
## 4879 https://udn.com/news/story/121687/5212213 議題 1 295
## 4880 https://udn.com/news/story/121687/5212213 顯然 1 295
## 4881 https://udn.com/news/story/121687/5215820 一大 1 503
## 4882 https://udn.com/news/story/121687/5215820 一支 1 503
## 4883 https://udn.com/news/story/121687/5215820 一年 1 503
## 4884 https://udn.com/news/story/121687/5215820 一次 1 503
## 4885 https://udn.com/news/story/121687/5215820 一百週年 1 503
## 4886 https://udn.com/news/story/121687/5215820 一些 1 503
## 4887 https://udn.com/news/story/121687/5215820 一連串 1 503
## 4888 https://udn.com/news/story/121687/5215820 一篇 1 503
## 4889 https://udn.com/news/story/121687/5215820 上任 1 503
## 4890 https://udn.com/news/story/121687/5215820 口中 1 503
## 4891 https://udn.com/news/story/121687/5215820 口頭 1 503
## 4892 https://udn.com/news/story/121687/5215820 女王 1 503
## 4893 https://udn.com/news/story/121687/5215820 小時 1 503
## 4894 https://udn.com/news/story/121687/5215820 干擾 1 503
## 4895 https://udn.com/news/story/121687/5215820 不太可能 1 503
## 4896 https://udn.com/news/story/121687/5215820 不安 1 503
## 4897 https://udn.com/news/story/121687/5215820 中共 1 503
## 4898 https://udn.com/news/story/121687/5215820 中國軍力 1 503
## 4899 https://udn.com/news/story/121687/5215820 之間 1 503
## 4900 https://udn.com/news/story/121687/5215820 五角大廈 1 503
## 4901 https://udn.com/news/story/121687/5215820 允許 1 503
## 4902 https://udn.com/news/story/121687/5215820 內閣 1 503
## 4903 https://udn.com/news/story/121687/5215820 公司 1 503
## 4904 https://udn.com/news/story/121687/5215820 升高 1 503
## 4905 https://udn.com/news/story/121687/5215820 巴馬 1 503
## 4906 https://udn.com/news/story/121687/5215820 引爆 1 503
## 4907 https://udn.com/news/story/121687/5215820 支持 1 503
## 4908 https://udn.com/news/story/121687/5215820 方式 1 503
## 4909 https://udn.com/news/story/121687/5215820 方針 1 503
## 4910 https://udn.com/news/story/121687/5215820 日本首相 1 503
## 4911 https://udn.com/news/story/121687/5215820 日前 1 503
## 4912 https://udn.com/news/story/121687/5215820 世界 1 503
## 4913 https://udn.com/news/story/121687/5215820 主任 1 503
## 4914 https://udn.com/news/story/121687/5215820 主意 1 503
## 4915 https://udn.com/news/story/121687/5215820 主權 1 503
## 4916 https://udn.com/news/story/121687/5215820 出口 1 503
## 4917 https://udn.com/news/story/121687/5215820 台列嶼 1 503
## 4918 https://udn.com/news/story/121687/5215820 司令部 1 503
## 4919 https://udn.com/news/story/121687/5215820 外交部長 1 503
## 4920 https://udn.com/news/story/121687/5215820 外長 1 503
## 4921 https://udn.com/news/story/121687/5215820 外國 1 503
## 4922 https://udn.com/news/story/121687/5215820 未來 1 503
## 4923 https://udn.com/news/story/121687/5215820 本週 1 503
## 4924 https://udn.com/news/story/121687/5215820 交往 1 503
## 4925 https://udn.com/news/story/121687/5215820 交流 1 503
## 4926 https://udn.com/news/story/121687/5215820 伊麗莎白 1 503
## 4927 https://udn.com/news/story/121687/5215820 列出 1 503
## 4928 https://udn.com/news/story/121687/5215820 印太 1 503
## 4929 https://udn.com/news/story/121687/5215820 印尼 1 503
## 4930 https://udn.com/news/story/121687/5215820 因川普 1 503
## 4931 https://udn.com/news/story/121687/5215820 因應 1 503
## 4932 https://udn.com/news/story/121687/5215820 在川普 1 503
## 4933 https://udn.com/news/story/121687/5215820 存在 1 503
## 4934 https://udn.com/news/story/121687/5215820 安全 1 503
## 4935 https://udn.com/news/story/121687/5215820 有所 1 503
## 4936 https://udn.com/news/story/121687/5215820 有感 1 503
## 4937 https://udn.com/news/story/121687/5215820 次數 1 503
## 4938 https://udn.com/news/story/121687/5215820 此法 1 503
## 4939 https://udn.com/news/story/121687/5215820 自由 1 503
## 4940 https://udn.com/news/story/121687/5215820 作法 1 503
## 4941 https://udn.com/news/story/121687/5215820 作戰 1 503
## 4942 https://udn.com/news/story/121687/5215820 判定 1 503
## 4943 https://udn.com/news/story/121687/5215820 完全 1 503
## 4944 https://udn.com/news/story/121687/5215820 希斯 1 503
## 4945 https://udn.com/news/story/121687/5215820 批准 1 503
## 4946 https://udn.com/news/story/121687/5215820 抗議 1 503
## 4947 https://udn.com/news/story/121687/5215820 更成 1 503
## 4948 https://udn.com/news/story/121687/5215820 更具 1 503
## 4949 https://udn.com/news/story/121687/5215820 汶萊 1 503
## 4950 https://udn.com/news/story/121687/5215820 決定 1 503
## 4951 https://udn.com/news/story/121687/5215820 沒多久 1 503
## 4952 https://udn.com/news/story/121687/5215820 沖繩 1 503
## 4953 https://udn.com/news/story/121687/5215820 罕見 1 503
## 4954 https://udn.com/news/story/121687/5215820 防空 1 503
## 4955 https://udn.com/news/story/121687/5215820 防禦 1 503
## 4956 https://udn.com/news/story/121687/5215820 來自 1 503
## 4957 https://udn.com/news/story/121687/5215820 兩支 1 503
## 4958 https://udn.com/news/story/121687/5215820 兩棲 1 503
## 4959 https://udn.com/news/story/121687/5215820 協議 1 503
## 4960 https://udn.com/news/story/121687/5215820 卸任 1 503
## 4961 https://udn.com/news/story/121687/5215820 周邊國家 1 503
## 4962 https://udn.com/news/story/121687/5215820 和緩 1 503
## 4963 https://udn.com/news/story/121687/5215820 底線 1 503
## 4964 https://udn.com/news/story/121687/5215820 所在 1 503
## 4965 https://udn.com/news/story/121687/5215820 明確 1 503
## 4966 https://udn.com/news/story/121687/5215820 東京 1 503
## 4967 https://udn.com/news/story/121687/5215820 武力 1 503
## 4968 https://udn.com/news/story/121687/5215820 法律 1 503
## 4969 https://udn.com/news/story/121687/5215820 法國 1 503
## 4970 https://udn.com/news/story/121687/5215820 法對 1 503
## 4971 https://udn.com/news/story/121687/5215820 注定 1 503
## 4972 https://udn.com/news/story/121687/5215820 爭議 1 503
## 4973 https://udn.com/news/story/121687/5215820 知道 1 503
## 4974 https://udn.com/news/story/121687/5215820 空中 1 503
## 4975 https://udn.com/news/story/121687/5215820 表態 1 503
## 4976 https://udn.com/news/story/121687/5215820 近年 1 503
## 4977 https://udn.com/news/story/121687/5215820 近來 1 503
## 4978 https://udn.com/news/story/121687/5215820 門外 1 503
## 4979 https://udn.com/news/story/121687/5215820 附近 1 503
## 4980 https://udn.com/news/story/121687/5215820 保障 1 503
## 4981 https://udn.com/news/story/121687/5215820 則有 1 503
## 4982 https://udn.com/news/story/121687/5215820 客戶 1 503
## 4983 https://udn.com/news/story/121687/5215820 建黨 1 503
## 4984 https://udn.com/news/story/121687/5215820 很糟 1 503
## 4985 https://udn.com/news/story/121687/5215820 持續 1 503
## 4986 https://udn.com/news/story/121687/5215820 挑戰 1 503
## 4987 https://udn.com/news/story/121687/5215820 挑釁 1 503
## 4988 https://udn.com/news/story/121687/5215820 某種程度 1 503
## 4989 https://udn.com/news/story/121687/5215820 相同 1 503
## 4990 https://udn.com/news/story/121687/5215820 看來 1 503
## 4991 https://udn.com/news/story/121687/5215820 研究員 1 503
## 4992 https://udn.com/news/story/121687/5215820 紅線 1 503
## 4993 https://udn.com/news/story/121687/5215820 美中關係 1 503
## 4994 https://udn.com/news/story/121687/5215820 美國有線電視新聞網 1 503
## 4995 https://udn.com/news/story/121687/5215820 美國空軍 1 503
## 4996 https://udn.com/news/story/121687/5215820 美國軍艦 1 503
## 4997 https://udn.com/news/story/121687/5215820 英國 1 503
## 4998 https://udn.com/news/story/121687/5215820 負責 1 503
## 4999 https://udn.com/news/story/121687/5215820 軍售 1 503
## 5000 https://udn.com/news/story/121687/5215820 軍演 1 503
## 5001 https://udn.com/news/story/121687/5215820 重要 1 503
## 5002 https://udn.com/news/story/121687/5215820 重要性 1 503
## 5003 https://udn.com/news/story/121687/5215820 重點 1 503
## 5004 https://udn.com/news/story/121687/5215820 降低 1 503
## 5005 https://udn.com/news/story/121687/5215820 島嶼 1 503
## 5006 https://udn.com/news/story/121687/5215820 島礁 1 503
## 5007 https://udn.com/news/story/121687/5215820 庫蘭德 1 503
## 5008 https://udn.com/news/story/121687/5215820 料將 1 503
## 5009 https://udn.com/news/story/121687/5215820 時得 1 503
## 5010 https://udn.com/news/story/121687/5215820 時期 1 503
## 5011 https://udn.com/news/story/121687/5215820 時機 1 503
## 5012 https://udn.com/news/story/121687/5215820 案並 1 503
## 5013 https://udn.com/news/story/121687/5215820 海里 1 503
## 5014 https://udn.com/news/story/121687/5215820 海峽 1 503
## 5015 https://udn.com/news/story/121687/5215820 海域 1 503
## 5016 https://udn.com/news/story/121687/5215820 航行 1 503
## 5017 https://udn.com/news/story/121687/5215820 訊息 1 503
## 5018 https://udn.com/news/story/121687/5215820 起初 1 503
## 5019 https://udn.com/news/story/121687/5215820 馬來西亞 1 503
## 5020 https://udn.com/news/story/121687/5215820 高官 1 503
## 5021 https://udn.com/news/story/121687/5215820 動力 1 503
## 5022 https://udn.com/news/story/121687/5215820 動用 1 503
## 5023 https://udn.com/news/story/121687/5215820 動作 1 503
## 5024 https://udn.com/news/story/121687/5215820 參與 1 503
## 5025 https://udn.com/news/story/121687/5215820 國防 1 503
## 5026 https://udn.com/news/story/121687/5215820 國防部長 1 503
## 5027 https://udn.com/news/story/121687/5215820 國際法 1 503
## 5028 https://udn.com/news/story/121687/5215820 基地 1 503
## 5029 https://udn.com/news/story/121687/5215820 堅強 1 503
## 5030 https://udn.com/news/story/121687/5215820 專文 1 503
## 5031 https://udn.com/news/story/121687/5215820 常會 1 503
## 5032 https://udn.com/news/story/121687/5215820 情報中心 1 503
## 5033 https://udn.com/news/story/121687/5215820 授權 1 503
## 5034 https://udn.com/news/story/121687/5215820 採取 1 503
## 5035 https://udn.com/news/story/121687/5215820 採購 1 503
## 5036 https://udn.com/news/story/121687/5215820 現行政策 1 503
## 5037 https://udn.com/news/story/121687/5215820 理由 1 503
## 5038 https://udn.com/news/story/121687/5215820 第一個 1 503
## 5039 https://udn.com/news/story/121687/5215820 累計 1 503
## 5040 https://udn.com/news/story/121687/5215820 船隻 1 503
## 5041 https://udn.com/news/story/121687/5215820 處理 1 503
## 5042 https://udn.com/news/story/121687/5215820 訪台 1 503
## 5043 https://udn.com/news/story/121687/5215820 設在 1 503
## 5044 https://udn.com/news/story/121687/5215820 設法 1 503
## 5045 https://udn.com/news/story/121687/5215820 這波陣 1 503
## 5046 https://udn.com/news/story/121687/5215820 這番 1 503
## 5047 https://udn.com/news/story/121687/5215820 這項 1 503
## 5048 https://udn.com/news/story/121687/5215820 這會 1 503
## 5049 https://udn.com/news/story/121687/5215820 這點 1 503
## 5050 https://udn.com/news/story/121687/5215820 通話 1 503
## 5051 https://udn.com/news/story/121687/5215820 部長 1 503
## 5052 https://udn.com/news/story/121687/5215820 部長級 1 503
## 5053 https://udn.com/news/story/121687/5215820 報導 1 503
## 5054 https://udn.com/news/story/121687/5215820 幾年 1 503
## 5055 https://udn.com/news/story/121687/5215820 提出 1 503
## 5056 https://udn.com/news/story/121687/5215820 提供 1 503
## 5057 https://udn.com/news/story/121687/5215820 普治下 1 503
## 5058 https://udn.com/news/story/121687/5215820 最大 1 503
## 5059 https://udn.com/news/story/121687/5215820 最後 1 503
## 5060 https://udn.com/news/story/121687/5215820 測試 1 503
## 5061 https://udn.com/news/story/121687/5215820 無疑 1 503
## 5062 https://udn.com/news/story/121687/5215820 焦點 1 503
## 5063 https://udn.com/news/story/121687/5215820 登上 1 503
## 5064 https://udn.com/news/story/121687/5215820 絕對 1 503
## 5065 https://udn.com/news/story/121687/5215820 菅義偉 1 503
## 5066 https://udn.com/news/story/121687/5215820 越南 1 503
## 5067 https://udn.com/news/story/121687/5215820 開端 1 503
## 5068 https://udn.com/news/story/121687/5215820 順利 1 503
## 5069 https://udn.com/news/story/121687/5215820 傳遞 1 503
## 5070 https://udn.com/news/story/121687/5215820 僅比歐 1 503
## 5071 https://udn.com/news/story/121687/5215820 僅是 1 503
## 5072 https://udn.com/news/story/121687/5215820 奧斯汀 1 503
## 5073 https://udn.com/news/story/121687/5215820 意願 1 503
## 5074 https://udn.com/news/story/121687/5215820 新加坡 1 503
## 5075 https://udn.com/news/story/121687/5215820 新任 1 503
## 5076 https://udn.com/news/story/121687/5215820 會談 1 503
## 5077 https://udn.com/news/story/121687/5215820 盟友 1 503
## 5078 https://udn.com/news/story/121687/5215820 群赴 1 503
## 5079 https://udn.com/news/story/121687/5215820 試探 1 503
## 5080 https://udn.com/news/story/121687/5215820 資深 1 503
## 5081 https://udn.com/news/story/121687/5215820 資源 1 503
## 5082 https://udn.com/news/story/121687/5215820 過去 1 503
## 5083 https://udn.com/news/story/121687/5215820 違抗 1 503
## 5084 https://udn.com/news/story/121687/5215820 雷達 1 503
## 5085 https://udn.com/news/story/121687/5215820 電話 1 503
## 5086 https://udn.com/news/story/121687/5215820 預料 1 503
## 5087 https://udn.com/news/story/121687/5215820 嘉手納 1 503
## 5088 https://udn.com/news/story/121687/5215820 夥伴 1 503
## 5089 https://udn.com/news/story/121687/5215820 對方 1 503
## 5090 https://udn.com/news/story/121687/5215820 對台 1 503
## 5091 https://udn.com/news/story/121687/5215820 對美日 1 503
## 5092 https://udn.com/news/story/121687/5215820 監視 1 503
## 5093 https://udn.com/news/story/121687/5215820 種種 1 503
## 5094 https://udn.com/news/story/121687/5215820 管轄 1 503
## 5095 https://udn.com/news/story/121687/5215820 維持 1 503
## 5096 https://udn.com/news/story/121687/5215820 緊張 1 503
## 5097 https://udn.com/news/story/121687/5215820 遠東 1 503
## 5098 https://udn.com/news/story/121687/5215820 領土 1 503
## 5099 https://udn.com/news/story/121687/5215820 增加 1 503
## 5100 https://udn.com/news/story/121687/5215820 影響 1 503
## 5101 https://udn.com/news/story/121687/5215820 德國 1 503
## 5102 https://udn.com/news/story/121687/5215820 歐洲 1 503
## 5103 https://udn.com/news/story/121687/5215820 確認 1 503
## 5104 https://udn.com/news/story/121687/5215820 範圍 1 503
## 5105 https://udn.com/news/story/121687/5215820 適用 1 503
## 5106 https://udn.com/news/story/121687/5215820 適逢 1 503
## 5107 https://udn.com/news/story/121687/5215820 鄰居 1 503
## 5108 https://udn.com/news/story/121687/5215820 靠近 1 503
## 5109 https://udn.com/news/story/121687/5215820 駛近 1 503
## 5110 https://udn.com/news/story/121687/5215820 戰爭 1 503
## 5111 https://udn.com/news/story/121687/5215820 操練 1 503
## 5112 https://udn.com/news/story/121687/5215820 橫須賀 1 503
## 5113 https://udn.com/news/story/121687/5215820 頻率 1 503
## 5114 https://udn.com/news/story/121687/5215820 幫助 1 503
## 5115 https://udn.com/news/story/121687/5215820 總部 1 503
## 5116 https://udn.com/news/story/121687/5215820 聲明 1 503
## 5117 https://udn.com/news/story/121687/5215820 聲索 1 503
## 5118 https://udn.com/news/story/121687/5215820 舉動 1 503
## 5119 https://udn.com/news/story/121687/5215820 避免 1 503
## 5120 https://udn.com/news/story/121687/5215820 還派 1 503
## 5121 https://udn.com/news/story/121687/5215820 還說 1 503
## 5122 https://udn.com/news/story/121687/5215820 轉移 1 503
## 5123 https://udn.com/news/story/121687/5215820 雙方 1 503
## 5124 https://udn.com/news/story/121687/5215820 簽署日 1 503
## 5125 https://udn.com/news/story/121687/5215820 羅斯福 1 503
## 5126 https://udn.com/news/story/121687/5215820 識別區 1 503
## 5127 https://udn.com/news/story/121687/5215820 關係 1 503
## 5128 https://udn.com/news/story/121687/5215820 關鍵 1 503
## 5129 https://udn.com/news/story/121687/5215820 競爭對手 1 503
## 5130 https://udn.com/news/story/121687/5215820 議題 1 503
## 5131 https://udn.com/news/story/121687/5215820 驅逐艦 1 503
## 5132 https://udn.com/news/story/121687/5215820 顯在 1 503
## 5133 https://udn.com/news/story/121687/5215820 顯著 1 503
## 5134 https://udn.com/news/story/121687/5215820 體系 1 503
## 5135 https://udn.com/news/story/122051/5368627 一架 1 239
## 5136 https://udn.com/news/story/122051/5368627 一環 1 239
## 5137 https://udn.com/news/story/122051/5368627 力量 1 239
## 5138 https://udn.com/news/story/122051/5368627 上述 1 239
## 5139 https://udn.com/news/story/122051/5368627 大陸 1 239
## 5140 https://udn.com/news/story/122051/5368627 干預 1 239
## 5141 https://udn.com/news/story/122051/5368627 不甘示弱 1 239
## 5142 https://udn.com/news/story/122051/5368627 今年 1 239
## 5143 https://udn.com/news/story/122051/5368627 反潛巡邏機 1 239
## 5144 https://udn.com/news/story/122051/5368627 太原 1 239
## 5145 https://udn.com/news/story/122051/5368627 方式 1 239
## 5146 https://udn.com/news/story/122051/5368627 日也經 1 239
## 5147 https://udn.com/news/story/122051/5368627 主任 1 239
## 5148 https://udn.com/news/story/122051/5368627 以來 1 239
## 5149 https://udn.com/news/story/122051/5368627 出現 1 239
## 5150 https://udn.com/news/story/122051/5368627 包括 1 239
## 5151 https://udn.com/news/story/122051/5368627 北京 1 239
## 5152 https://udn.com/news/story/122051/5368627 去年 1 239
## 5153 https://udn.com/news/story/122051/5368627 可能 1 239
## 5154 https://udn.com/news/story/122051/5368627 外交學院 1 239
## 5155 https://udn.com/news/story/122051/5368627 未來 1 239
## 5156 https://udn.com/news/story/122051/5368627 本島 1 239
## 5157 https://udn.com/news/story/122051/5368627 成都 1 239
## 5158 https://udn.com/news/story/122051/5368627 此次 1 239
## 5159 https://udn.com/news/story/122051/5368627 行動 1 239
## 5160 https://udn.com/news/story/122051/5368627 西太平洋 1 239
## 5161 https://udn.com/news/story/122051/5368627 快速 1 239
## 5162 https://udn.com/news/story/122051/5368627 沖繩 1 239
## 5163 https://udn.com/news/story/122051/5368627 男女 1 239
## 5164 https://udn.com/news/story/122051/5368627 並向 1 239
## 5165 https://udn.com/news/story/122051/5368627 兩個 1 239
## 5166 https://udn.com/news/story/122051/5368627 呼倫湖 1 239
## 5167 https://udn.com/news/story/122051/5368627 表示 1 239
## 5168 https://udn.com/news/story/122051/5368627 長江口 1 239
## 5169 https://udn.com/news/story/122051/5368627 長崎縣 1 239
## 5170 https://udn.com/news/story/122051/5368627 附近 1 239
## 5171 https://udn.com/news/story/122051/5368627 保持 1 239
## 5172 https://udn.com/news/story/122051/5368627 則認 1 239
## 5173 https://udn.com/news/story/122051/5368627 則需 1 239
## 5174 https://udn.com/news/story/122051/5368627 南昌 1 239
## 5175 https://udn.com/news/story/122051/5368627 南駛 1 239
## 5176 https://udn.com/news/story/122051/5368627 施壓 1 239
## 5177 https://udn.com/news/story/122051/5368627 活動 1 239
## 5178 https://udn.com/news/story/122051/5368627 美中 1 239
## 5179 https://udn.com/news/story/122051/5368627 胡波 1 239
## 5180 https://udn.com/news/story/122051/5368627 計畫 1 239
## 5181 https://udn.com/news/story/122051/5368627 軍艦 1 239
## 5182 https://udn.com/news/story/122051/5368627 飛往 1 239
## 5183 https://udn.com/news/story/122051/5368627 首次 1 239
## 5184 https://udn.com/news/story/122051/5368627 宮古島 1 239
## 5185 https://udn.com/news/story/122051/5368627 海東 1 239
## 5186 https://udn.com/news/story/122051/5368627 海洋 1 239
## 5187 https://udn.com/news/story/122051/5368627 航經 1 239
## 5188 https://udn.com/news/story/122051/5368627 訓練 1 239
## 5189 https://udn.com/news/story/122051/5368627 針對 1 239
## 5190 https://udn.com/news/story/122051/5368627 馬六甲海峽 1 239
## 5191 https://udn.com/news/story/122051/5368627 做好 1 239
## 5192 https://udn.com/news/story/122051/5368627 動作 1 239
## 5193 https://udn.com/news/story/122051/5368627 動身前往 1 239
## 5194 https://udn.com/news/story/122051/5368627 國家 1 239
## 5195 https://udn.com/news/story/122051/5368627 將對 1 239
## 5196 https://udn.com/news/story/122051/5368627 專家 1 239
## 5197 https://udn.com/news/story/122051/5368627 常態 1 239
## 5198 https://udn.com/news/story/122051/5368627 強度 1 239
## 5199 https://udn.com/news/story/122051/5368627 推進 1 239
## 5200 https://udn.com/news/story/122051/5368627 教授 1 239
## 5201 https://udn.com/news/story/122051/5368627 現在 1 239
## 5202 https://udn.com/news/story/122051/5368627 第三次 1 239
## 5203 https://udn.com/news/story/122051/5368627 統合 1 239
## 5204 https://udn.com/news/story/122051/5368627 這是 1 239
## 5205 https://udn.com/news/story/122051/5368627 通報 1 239
## 5206 https://udn.com/news/story/122051/5368627 部署 1 239
## 5207 https://udn.com/news/story/122051/5368627 尋求 1 239
## 5208 https://udn.com/news/story/122051/5368627 斯廷號 1 239
## 5209 https://udn.com/news/story/122051/5368627 進入 1 239
## 5210 https://udn.com/news/story/122051/5368627 進出 1 239
## 5211 https://udn.com/news/story/122051/5368627 黃岡 1 239
## 5212 https://udn.com/news/story/122051/5368627 彙集 1 239
## 5213 https://udn.com/news/story/122051/5368627 感知 1 239
## 5214 https://udn.com/news/story/122051/5368627 新華社 1 239
## 5215 https://udn.com/news/story/122051/5368627 準備 1 239
## 5216 https://udn.com/news/story/122051/5368627 盟友 1 239
## 5217 https://udn.com/news/story/122051/5368627 群島 1 239
## 5218 https://udn.com/news/story/122051/5368627 補給艦 1 239
## 5219 https://udn.com/news/story/122051/5368627 解讀 1 239
## 5220 https://udn.com/news/story/122051/5368627 試圖 1 239
## 5221 https://udn.com/news/story/122051/5368627 實戰 1 239
## 5222 https://udn.com/news/story/122051/5368627 幕僚 1 239
## 5223 https://udn.com/news/story/122051/5368627 態勢 1 239
## 5224 https://udn.com/news/story/122051/5368627 監部 1 239
## 5225 https://udn.com/news/story/122051/5368627 綜合 1 239
## 5226 https://udn.com/news/story/122051/5368627 認為 1 239
## 5227 https://udn.com/news/story/122051/5368627 遠海 1 239
## 5228 https://udn.com/news/story/122051/5368627 增加 1 239
## 5229 https://udn.com/news/story/122051/5368627 歐洲 1 239
## 5230 https://udn.com/news/story/122051/5368627 編隊 1 239
## 5231 https://udn.com/news/story/122051/5368627 緬甸 1 239
## 5232 https://udn.com/news/story/122051/5368627 諸如 1 239
## 5233 https://udn.com/news/story/122051/5368627 駛向 1 239
## 5234 https://udn.com/news/story/122051/5368627 戰略 1 239
## 5235 https://udn.com/news/story/122051/5368627 激化 1 239
## 5236 https://udn.com/news/story/122051/5368627 頻率 1 239
## 5237 https://udn.com/news/story/122051/5368627 頻頻 1 239
## 5238 https://udn.com/news/story/122051/5368627 壓迫 1 239
## 5239 https://udn.com/news/story/122051/5368627 還會 1 239
## 5240 https://udn.com/news/story/122051/5368627 藉機 1 239
## 5241 https://udn.com/news/story/122051/5368627 繼續 1 239
## 5242 https://udn.com/news/story/122051/5368627 艦為 1 239
## 5243 https://udn.com/news/story/122051/5368627 警戒 1 239
## 5244 https://udn.com/news/story/122051/5368627 議題 1 239
## 5245 https://udn.com/news/story/122051/5368627 護衛艦 1 239
## 5246 https://udn.com/news/story/122051/5369349 中央社 1 103
## 5247 https://udn.com/news/story/122051/5369349 中國 1 103
## 5248 https://udn.com/news/story/122051/5369349 今天 1 103
## 5249 https://udn.com/news/story/122051/5369349 今年 1 103
## 5250 https://udn.com/news/story/122051/5369349 公布 1 103
## 5251 https://udn.com/news/story/122051/5369349 日前 1 103
## 5252 https://udn.com/news/story/122051/5369349 月底 1 103
## 5253 https://udn.com/news/story/122051/5369349 出現 1 103
## 5254 https://udn.com/news/story/122051/5369349 北京大學 1 103
## 5255 https://udn.com/news/story/122051/5369349 台北 1 103
## 5256 https://udn.com/news/story/122051/5369349 外電報導 1 103
## 5257 https://udn.com/news/story/122051/5369349 平台 1 103
## 5258 https://udn.com/news/story/122051/5369349 目的 1 103
## 5259 https://udn.com/news/story/122051/5369349 安全 1 103
## 5260 https://udn.com/news/story/122051/5369349 有利於 1 103
## 5261 https://udn.com/news/story/122051/5369349 自由 1 103
## 5262 https://udn.com/news/story/122051/5369349 行動 1 103
## 5263 https://udn.com/news/story/122051/5369349 作戰區 1 103
## 5264 https://udn.com/news/story/122051/5369349 東海 1 103
## 5265 https://udn.com/news/story/122051/5369349 長江口 1 103
## 5266 https://udn.com/news/story/122051/5369349 建立 1 103
## 5267 https://udn.com/news/story/122051/5369349 指出 1 103
## 5268 https://udn.com/news/story/122051/5369349 指其 1 103
## 5269 https://udn.com/news/story/122051/5369349 研究所 1 103
## 5270 https://udn.com/news/story/122051/5369349 美國第七艦隊 1 103
## 5271 https://udn.com/news/story/122051/5369349 計畫 1 103
## 5272 https://udn.com/news/story/122051/5369349 凌晨 1 103
## 5273 https://udn.com/news/story/122051/5369349 海上 1 103
## 5274 https://udn.com/news/story/122051/5369349 海洋 1 103
## 5275 https://udn.com/news/story/122051/5369349 海域 1 103
## 5276 https://udn.com/news/story/122051/5369349 航行 1 103
## 5277 https://udn.com/news/story/122051/5369349 區域 1 103
## 5278 https://udn.com/news/story/122051/5369349 帶領 1 103
## 5279 https://udn.com/news/story/122051/5369349 晨間 1 103
## 5280 https://udn.com/news/story/122051/5369349 第二次 1 103
## 5281 https://udn.com/news/story/122051/5369349 這是 1 103
## 5282 https://udn.com/news/story/122051/5369349 斯廷號 1 103
## 5283 https://udn.com/news/story/122051/5369349 智庫 1 103
## 5284 https://udn.com/news/story/122051/5369349 期間 1 103
## 5285 https://udn.com/news/story/122051/5369349 感知 1 103
## 5286 https://udn.com/news/story/122051/5369349 路透 1 103
## 5287 https://udn.com/news/story/122051/5369349 路透社 1 103
## 5288 https://udn.com/news/story/122051/5369349 夥伴關係 1 103
## 5289 https://udn.com/news/story/122051/5369349 態勢 1 103
## 5290 https://udn.com/news/story/122051/5369349 綜合 1 103
## 5291 https://udn.com/news/story/122051/5369349 確保 1 103
## 5292 https://udn.com/news/story/122051/5369349 範圍 1 103
## 5293 https://udn.com/news/story/122051/5369349 駛入 1 103
## 5294 https://udn.com/news/story/122051/5369349 戰略 1 103
## 5295 https://udn.com/news/story/122051/5369349 還說 1 103
## 5296 https://udn.com/news/story/122051/5369349 證實 1 103
## 5297 https://udn.com/news/story/122051/5369349 驅逐艦 1 103
## 5298 https://udn.com/news/story/122051/5369962 上午 1 261
## 5299 https://udn.com/news/story/122051/5369962 工作 1 261
## 5300 https://udn.com/news/story/122051/5369962 中隊 1 261
## 5301 https://udn.com/news/story/122051/5369962 今後 1 261
## 5302 https://udn.com/news/story/122051/5369962 仍將 1 261
## 5303 https://udn.com/news/story/122051/5369962 公布 1 261
## 5304 https://udn.com/news/story/122051/5369962 升級版 1 261
## 5305 https://udn.com/news/story/122051/5369962 友人 1 261
## 5306 https://udn.com/news/story/122051/5369962 反潛 1 261
## 5307 https://udn.com/news/story/122051/5369962 太平洋 1 261
## 5308 https://udn.com/news/story/122051/5369962 少將 1 261
## 5309 https://udn.com/news/story/122051/5369962 尤其 1 261
## 5310 https://udn.com/news/story/122051/5369962 引述 1 261
## 5311 https://udn.com/news/story/122051/5369962 日本政府 1 261
## 5312 https://udn.com/news/story/122051/5369962 以向 1 261
## 5313 https://udn.com/news/story/122051/5369962 出售 1 261
## 5314 https://udn.com/news/story/122051/5369962 加級 1 261
## 5315 https://udn.com/news/story/122051/5369962 加劇 1 261
## 5316 https://udn.com/news/story/122051/5369962 北京 1 261
## 5317 https://udn.com/news/story/122051/5369962 台北 1 261
## 5318 https://udn.com/news/story/122051/5369962 左右 1 261
## 5319 https://udn.com/news/story/122051/5369962 必將 1 261
## 5320 https://udn.com/news/story/122051/5369962 未來 1 261
## 5321 https://udn.com/news/story/122051/5369962 本島 1 261
## 5322 https://udn.com/news/story/122051/5369962 立委 1 261
## 5323 https://udn.com/news/story/122051/5369962 任務 1 261
## 5324 https://udn.com/news/story/122051/5369962 全球 1 261
## 5325 https://udn.com/news/story/122051/5369962 共同 1 261
## 5326 https://udn.com/news/story/122051/5369962 共計 1 261
## 5327 https://udn.com/news/story/122051/5369962 再次 1 261
## 5328 https://udn.com/news/story/122051/5369962 印太 1 261
## 5329 https://udn.com/news/story/122051/5369962 印度 1 261
## 5330 https://udn.com/news/story/122051/5369962 同行 1 261
## 5331 https://udn.com/news/story/122051/5369962 同意 1 261
## 5332 https://udn.com/news/story/122051/5369962 地區 1 261
## 5333 https://udn.com/news/story/122051/5369962 安全 1 261
## 5334 https://udn.com/news/story/122051/5369962 年度 1 261
## 5335 https://udn.com/news/story/122051/5369962 自由 1 261
## 5336 https://udn.com/news/story/122051/5369962 自衛隊 1 261
## 5337 https://udn.com/news/story/122051/5369962 作戰區 1 261
## 5338 https://udn.com/news/story/122051/5369962 即將 1 261
## 5339 https://udn.com/news/story/122051/5369962 巡洋艦 1 261
## 5340 https://udn.com/news/story/122051/5369962 我方 1 261
## 5341 https://udn.com/news/story/122051/5369962 沖繩 1 261
## 5342 https://udn.com/news/story/122051/5369962 身為 1 261
## 5343 https://udn.com/news/story/122051/5369962 邦克山 1 261
## 5344 https://udn.com/news/story/122051/5369962 防衛 1 261
## 5345 https://udn.com/news/story/122051/5369962 防禦 1 261
## 5346 https://udn.com/news/story/122051/5369962 例行 1 261
## 5347 https://udn.com/news/story/122051/5369962 協同 1 261
## 5348 https://udn.com/news/story/122051/5369962 周邊 1 261
## 5349 https://udn.com/news/story/122051/5369962 奉行 1 261
## 5350 https://udn.com/news/story/122051/5369962 官網 1 261
## 5351 https://udn.com/news/story/122051/5369962 定翼 1 261
## 5352 https://udn.com/news/story/122051/5369962 所有人 1 261
## 5353 https://udn.com/news/story/122051/5369962 附近 1 261
## 5354 https://udn.com/news/story/122051/5369962 保證 1 261
## 5355 https://udn.com/news/story/122051/5369962 勃克級 1 261
## 5356 https://udn.com/news/story/122051/5369962 南下 1 261
## 5357 https://udn.com/news/story/122051/5369962 南昌 1 261
## 5358 https://udn.com/news/story/122051/5369962 威脅 1 261
## 5359 https://udn.com/news/story/122051/5369962 恫嚇 1 261
## 5360 https://udn.com/news/story/122051/5369962 按計劃 1 261
## 5361 https://udn.com/news/story/122051/5369962 昨天 1 261
## 5362 https://udn.com/news/story/122051/5369962 活動 1 261
## 5363 https://udn.com/news/story/122051/5369962 美方 1 261
## 5364 https://udn.com/news/story/122051/5369962 美軍 1 261
## 5365 https://udn.com/news/story/122051/5369962 美聯社 1 261
## 5366 https://udn.com/news/story/122051/5369962 致力於 1 261
## 5367 https://udn.com/news/story/122051/5369962 計畫 1 261
## 5368 https://udn.com/news/story/122051/5369962 計劃 1 261
## 5369 https://udn.com/news/story/122051/5369962 軍官 1 261
## 5370 https://udn.com/news/story/122051/5369962 重回 1 261
## 5371 https://udn.com/news/story/122051/5369962 重要 1 261
## 5372 https://udn.com/news/story/122051/5369962 飛行 1 261
## 5373 https://udn.com/news/story/122051/5369962 值此 1 261
## 5374 https://udn.com/news/story/122051/5369962 宮古島 1 261
## 5375 https://udn.com/news/story/122051/5369962 展現出 1 261
## 5376 https://udn.com/news/story/122051/5369962 振興 1 261
## 5377 https://udn.com/news/story/122051/5369962 時間 1 261
## 5378 https://udn.com/news/story/122051/5369962 海洋 1 261
## 5379 https://udn.com/news/story/122051/5369962 海峽 1 261
## 5380 https://udn.com/news/story/122051/5369962 秩序 1 261
## 5381 https://udn.com/news/story/122051/5369962 航艦 1 261
## 5382 https://udn.com/news/story/122051/5369962 馬來西亞 1 261
## 5383 https://udn.com/news/story/122051/5369962 高秀成 1 261
## 5384 https://udn.com/news/story/122051/5369962 高興 1 261
## 5385 https://udn.com/news/story/122051/5369962 區域 1 261
## 5386 https://udn.com/news/story/122051/5369962 國防工業 1 261
## 5387 https://udn.com/news/story/122051/5369962 國造 1 261
## 5388 https://udn.com/news/story/122051/5369962 基於 1 261
## 5389 https://udn.com/news/story/122051/5369962 將成 1 261
## 5390 https://udn.com/news/story/122051/5369962 常態 1 261
## 5391 https://udn.com/news/story/122051/5369962 康德羅 1 261
## 5392 https://udn.com/news/story/122051/5369962 推動 1 261
## 5393 https://udn.com/news/story/122051/5369962 旋翼機 1 261
## 5394 https://udn.com/news/story/122051/5369962 現在 1 261
## 5395 https://udn.com/news/story/122051/5369962 組合 1 261
## 5396 https://udn.com/news/story/122051/5369962 組成 1 261
## 5397 https://udn.com/news/story/122051/5369962 統合 1 261
## 5398 https://udn.com/news/story/122051/5369962 舷號 1 261
## 5399 https://udn.com/news/story/122051/5369962 規範 1 261
## 5400 https://udn.com/news/story/122051/5369962 透過 1 261
## 5401 https://udn.com/news/story/122051/5369962 最近 1 261
## 5402 https://udn.com/news/story/122051/5369962 期待 1 261
## 5403 https://udn.com/news/story/122051/5369962 發言人 1 261
## 5404 https://udn.com/news/story/122051/5369962 硬體 1 261
## 5405 https://udn.com/news/story/122051/5369962 進行 1 261
## 5406 https://udn.com/news/story/122051/5369962 意圖 1 261
## 5407 https://udn.com/news/story/122051/5369962 當地 1 261
## 5408 https://udn.com/news/story/122051/5369962 當局 1 261
## 5409 https://udn.com/news/story/122051/5369962 盟友 1 261
## 5410 https://udn.com/news/story/122051/5369962 群再入 1 261
## 5411 https://udn.com/news/story/122051/5369962 群在 1 261
## 5412 https://udn.com/news/story/122051/5369962 萬噸 1 261
## 5413 https://udn.com/news/story/122051/5369962 號就 1 261
## 5414 https://udn.com/news/story/122051/5369962 號與 1 261
## 5415 https://udn.com/news/story/122051/5369962 路透社 1 261
## 5416 https://udn.com/news/story/122051/5369962 過程 1 261
## 5417 https://udn.com/news/story/122051/5369962 夥伴 1 261
## 5418 https://udn.com/news/story/122051/5369962 對台 1 261
## 5419 https://udn.com/news/story/122051/5369962 幕僚 1 261
## 5420 https://udn.com/news/story/122051/5369962 演訓 1 261
## 5421 https://udn.com/news/story/122051/5369962 監部 1 261
## 5422 https://udn.com/news/story/122051/5369962 標準配置 1 261
## 5423 https://udn.com/news/story/122051/5369962 潛艦 1 261
## 5424 https://udn.com/news/story/122051/5369962 確認 1 261
## 5425 https://udn.com/news/story/122051/5369962 戰術 1 261
## 5426 https://udn.com/news/story/122051/5369962 戰機 1 261
## 5427 https://udn.com/news/story/122051/5369962 擁抱 1 261
## 5428 https://udn.com/news/story/122051/5369962 操演 1 261
## 5429 https://udn.com/news/story/122051/5369962 澳洲 1 261
## 5430 https://udn.com/news/story/122051/5369962 激怒 1 261
## 5431 https://udn.com/news/story/122051/5369962 選舉 1 261
## 5432 https://udn.com/news/story/122051/5369962 環球時報 1 261
## 5433 https://udn.com/news/story/122051/5369962 總統 1 261
## 5434 https://udn.com/news/story/122051/5369962 聯合行動 1 261
## 5435 https://udn.com/news/story/122051/5369962 聯隊 1 261
## 5436 https://udn.com/news/story/122051/5369962 舉行 1 261
## 5437 https://udn.com/news/story/122051/5369962 韓國 1 261
## 5438 https://udn.com/news/story/122051/5369962 穩定 1 261
## 5439 https://udn.com/news/story/122051/5369962 羅素 1 261
## 5440 https://udn.com/news/story/122051/5369962 證實 1 261
## 5441 https://udn.com/news/story/122051/5369962 願景 1 261
## 5442 https://udn.com/news/story/122051/5369962 類似 1 261
## 5443 https://udn.com/news/story/122051/5369962 艦艇 1 261
## 5444 https://udn.com/news/story/122051/5369962 艦載機 1 261
## 5445 https://udn.com/news/story/122051/5369962 警告 1 261
## 5446 https://udn.com/news/story/122051/5369962 譴責 1 261
## 5447 https://udn.com/news/story/122051/5369962 觀察家 1 261
## 5448 https://udn.com/news/story/12586/4730402 一手 1 375
## 5449 https://udn.com/news/story/12586/4730402 一句 1 375
## 5450 https://udn.com/news/story/12586/4730402 一件 1 375
## 5451 https://udn.com/news/story/12586/4730402 一步 1 375
## 5452 https://udn.com/news/story/12586/4730402 一套 1 375
## 5453 https://udn.com/news/story/12586/4730402 人民日報 1 375
## 5454 https://udn.com/news/story/12586/4730402 三個 1 375
## 5455 https://udn.com/news/story/12586/4730402 大關 1 375
## 5456 https://udn.com/news/story/12586/4730402 川普 1 375
## 5457 https://udn.com/news/story/12586/4730402 已經 1 375
## 5458 https://udn.com/news/story/12586/4730402 不同於 1 375
## 5459 https://udn.com/news/story/12586/4730402 不治 1 375
## 5460 https://udn.com/news/story/12586/4730402 中印 1 375
## 5461 https://udn.com/news/story/12586/4730402 之前 1 375
## 5462 https://udn.com/news/story/12586/4730402 之間 1 375
## 5463 https://udn.com/news/story/12586/4730402 仍要 1 375
## 5464 https://udn.com/news/story/12586/4730402 分裂 1 375
## 5465 https://udn.com/news/story/12586/4730402 升高 1 375
## 5466 https://udn.com/news/story/12586/4730402 反華 1 375
## 5467 https://udn.com/news/story/12586/4730402 太多 1 375
## 5468 https://udn.com/news/story/12586/4730402 引述 1 375
## 5469 https://udn.com/news/story/12586/4730402 引發 1 375
## 5470 https://udn.com/news/story/12586/4730402 心中 1 375
## 5471 https://udn.com/news/story/12586/4730402 日前 1 375
## 5472 https://udn.com/news/story/12586/4730402 王毅 1 375
## 5473 https://udn.com/news/story/12586/4730402 主動 1 375
## 5474 https://udn.com/news/story/12586/4730402 他還 1 375
## 5475 https://udn.com/news/story/12586/4730402 以牙還牙 1 375
## 5476 https://udn.com/news/story/12586/4730402 以來 1 375
## 5477 https://udn.com/news/story/12586/4730402 出兵 1 375
## 5478 https://udn.com/news/story/12586/4730402 出格 1 375
## 5479 https://udn.com/news/story/12586/4730402 出現 1 375
## 5480 https://udn.com/news/story/12586/4730402 刊發 1 375
## 5481 https://udn.com/news/story/12586/4730402 加分 1 375
## 5482 https://udn.com/news/story/12586/4730402 包括 1 375
## 5483 https://udn.com/news/story/12586/4730402 北京 1 375
## 5484 https://udn.com/news/story/12586/4730402 去年 1 375
## 5485 https://udn.com/news/story/12586/4730402 另據 1 375
## 5486 https://udn.com/news/story/12586/4730402 可能 1 375
## 5487 https://udn.com/news/story/12586/4730402 可能性 1 375
## 5488 https://udn.com/news/story/12586/4730402 可控因素 1 375
## 5489 https://udn.com/news/story/12586/4730402 可預測性 1 375
## 5490 https://udn.com/news/story/12586/4730402 外交部長 1 375
## 5491 https://udn.com/news/story/12586/4730402 必然 1 375
## 5492 https://udn.com/news/story/12586/4730402 必須 1 375
## 5493 https://udn.com/news/story/12586/4730402 必會 1 375
## 5494 https://udn.com/news/story/12586/4730402 未來 1 375
## 5495 https://udn.com/news/story/12586/4730402 正試圖 1 375
## 5496 https://udn.com/news/story/12586/4730402 目的 1 375
## 5497 https://udn.com/news/story/12586/4730402 目前 1 375
## 5498 https://udn.com/news/story/12586/4730402 休士頓 1 375
## 5499 https://udn.com/news/story/12586/4730402 全新 1 375
## 5500 https://udn.com/news/story/12586/4730402 全盤 1 375
## 5501 https://udn.com/news/story/12586/4730402 印度 1 375
## 5502 https://udn.com/news/story/12586/4730402 合作 1 375
## 5503 https://udn.com/news/story/12586/4730402 因素 1 375
## 5504 https://udn.com/news/story/12586/4730402 多年 1 375
## 5505 https://udn.com/news/story/12586/4730402 成都 1 375
## 5506 https://udn.com/news/story/12586/4730402 此舉 1 375
## 5507 https://udn.com/news/story/12586/4730402 低估 1 375
## 5508 https://udn.com/news/story/12586/4730402 判斷 1 375
## 5509 https://udn.com/news/story/12586/4730402 困難 1 375
## 5510 https://udn.com/news/story/12586/4730402 完全 1 375
## 5511 https://udn.com/news/story/12586/4730402 形式 1 375
## 5512 https://udn.com/news/story/12586/4730402 步步 1 375
## 5513 https://udn.com/news/story/12586/4730402 決心 1 375
## 5514 https://udn.com/news/story/12586/4730402 沈逸 1 375
## 5515 https://udn.com/news/story/12586/4730402 走火 1 375
## 5516 https://udn.com/news/story/12586/4730402 事件 1 375
## 5517 https://udn.com/news/story/12586/4730402 兩國 1 375
## 5518 https://udn.com/news/story/12586/4730402 受訪 1 375
## 5519 https://udn.com/news/story/12586/4730402 念頭 1 375
## 5520 https://udn.com/news/story/12586/4730402 所有 1 375
## 5521 https://udn.com/news/story/12586/4730402 放棄 1 375
## 5522 https://udn.com/news/story/12586/4730402 明確 1 375
## 5523 https://udn.com/news/story/12586/4730402 爭取 1 375
## 5524 https://udn.com/news/story/12586/4730402 俠客島 1 375
## 5525 https://udn.com/news/story/12586/4730402 信任 1 375
## 5526 https://udn.com/news/story/12586/4730402 信號 1 375
## 5527 https://udn.com/news/story/12586/4730402 哈佛大學 1 375
## 5528 https://udn.com/news/story/12586/4730402 宣布 1 375
## 5529 https://udn.com/news/story/12586/4730402 很大 1 375
## 5530 https://udn.com/news/story/12586/4730402 後果 1 375
## 5531 https://udn.com/news/story/12586/4730402 指出 1 375
## 5532 https://udn.com/news/story/12586/4730402 挑戰性 1 375
## 5533 https://udn.com/news/story/12586/4730402 政策 1 375
## 5534 https://udn.com/news/story/12586/4730402 昨日 1 375
## 5535 https://udn.com/news/story/12586/4730402 架構 1 375
## 5536 https://udn.com/news/story/12586/4730402 疫情 1 375
## 5537 https://udn.com/news/story/12586/4730402 相比之下 1 375
## 5538 https://udn.com/news/story/12586/4730402 看來 1 375
## 5539 https://udn.com/news/story/12586/4730402 突破 1 375
## 5540 https://udn.com/news/story/12586/4730402 突然 1 375
## 5541 https://udn.com/news/story/12586/4730402 美政府 1 375
## 5542 https://udn.com/news/story/12586/4730402 美國政府 1 375
## 5543 https://udn.com/news/story/12586/4730402 胡來 1 375
## 5544 https://udn.com/news/story/12586/4730402 英國 1 375
## 5545 https://udn.com/news/story/12586/4730402 要求 1 375
## 5546 https://udn.com/news/story/12586/4730402 面臨 1 375
## 5547 https://udn.com/news/story/12586/4730402 原則 1 375
## 5548 https://udn.com/news/story/12586/4730402 容易 1 375
## 5549 https://udn.com/news/story/12586/4730402 展示 1 375
## 5550 https://udn.com/news/story/12586/4730402 效果 1 375
## 5551 https://udn.com/news/story/12586/4730402 時期 1 375
## 5552 https://udn.com/news/story/12586/4730402 核心 1 375
## 5553 https://udn.com/news/story/12586/4730402 破壞 1 375
## 5554 https://udn.com/news/story/12586/4730402 起舞 1 375
## 5555 https://udn.com/news/story/12586/4730402 高度 1 375
## 5556 https://udn.com/news/story/12586/4730402 動作 1 375
## 5557 https://udn.com/news/story/12586/4730402 動員 1 375
## 5558 https://udn.com/news/story/12586/4730402 商量 1 375
## 5559 https://udn.com/news/story/12586/4730402 國內 1 375
## 5560 https://udn.com/news/story/12586/4730402 國防部長 1 375
## 5561 https://udn.com/news/story/12586/4730402 國與國 1 375
## 5562 https://udn.com/news/story/12586/4730402 國際 1 375
## 5563 https://udn.com/news/story/12586/4730402 基本 1 375
## 5564 https://udn.com/news/story/12586/4730402 基本上 1 375
## 5565 https://udn.com/news/story/12586/4730402 堅決 1 375
## 5566 https://udn.com/news/story/12586/4730402 將成 1 375
## 5567 https://udn.com/news/story/12586/4730402 專家 1 375
## 5568 https://udn.com/news/story/12586/4730402 強硬態度 1 375
## 5569 https://udn.com/news/story/12586/4730402 強調 1 375
## 5570 https://udn.com/news/story/12586/4730402 排除 1 375
## 5571 https://udn.com/news/story/12586/4730402 接納 1 375
## 5572 https://udn.com/news/story/12586/4730402 清晰 1 375
## 5573 https://udn.com/news/story/12586/4730402 第一 1 375
## 5574 https://udn.com/news/story/12586/4730402 第三條 1 375
## 5575 https://udn.com/news/story/12586/4730402 被動局面 1 375
## 5576 https://udn.com/news/story/12586/4730402 訪問 1 375
## 5577 https://udn.com/news/story/12586/4730402 透過 1 375
## 5578 https://udn.com/news/story/12586/4730402 造成 1 375
## 5579 https://udn.com/news/story/12586/4730402 傅高義 1 375
## 5580 https://udn.com/news/story/12586/4730402 報告 1 375
## 5581 https://udn.com/news/story/12586/4730402 報復 1 375
## 5582 https://udn.com/news/story/12586/4730402 媒體 1 375
## 5583 https://udn.com/news/story/12586/4730402 尊嚴 1 375
## 5584 https://udn.com/news/story/12586/4730402 就算 1 375
## 5585 https://udn.com/news/story/12586/4730402 幾種 1 375
## 5586 https://udn.com/news/story/12586/4730402 復旦大學 1 375
## 5587 https://udn.com/news/story/12586/4730402 提出 1 375
## 5588 https://udn.com/news/story/12586/4730402 最具 1 375
## 5589 https://udn.com/news/story/12586/4730402 最近 1 375
## 5590 https://udn.com/news/story/12586/4730402 無非 1 375
## 5591 https://udn.com/news/story/12586/4730402 無意 1 375
## 5592 https://udn.com/news/story/12586/4730402 發布 1 375
## 5593 https://udn.com/news/story/12586/4730402 發生衝突 1 375
## 5594 https://udn.com/news/story/12586/4730402 發展 1 375
## 5595 https://udn.com/news/story/12586/4730402 絕不 1 375
## 5596 https://udn.com/news/story/12586/4730402 進入 1 375
## 5597 https://udn.com/news/story/12586/4730402 量化 1 375
## 5598 https://udn.com/news/story/12586/4730402 階段 1 375
## 5599 https://udn.com/news/story/12586/4730402 傳遞 1 375
## 5600 https://udn.com/news/story/12586/4730402 新加坡 1 375
## 5601 https://udn.com/news/story/12586/4730402 新加坡國立大學 1 375
## 5602 https://udn.com/news/story/12586/4730402 新冠肺炎 1 375
## 5603 https://udn.com/news/story/12586/4730402 當前 1 375
## 5604 https://udn.com/news/story/12586/4730402 萬人 1 375
## 5605 https://udn.com/news/story/12586/4730402 落入 1 375
## 5606 https://udn.com/news/story/12586/4730402 過的 1 375
## 5607 https://udn.com/news/story/12586/4730402 預計 1 375
## 5608 https://udn.com/news/story/12586/4730402 圖表 1 375
## 5609 https://udn.com/news/story/12586/4730402 對方 1 375
## 5610 https://udn.com/news/story/12586/4730402 對抗 1 375
## 5611 https://udn.com/news/story/12586/4730402 對峙 1 375
## 5612 https://udn.com/news/story/12586/4730402 對華政策 1 375
## 5613 https://udn.com/news/story/12586/4730402 旗下 1 375
## 5614 https://udn.com/news/story/12586/4730402 榮譽 1 375
## 5615 https://udn.com/news/story/12586/4730402 製造 1 375
## 5616 https://udn.com/news/story/12586/4730402 輕易 1 375
## 5617 https://udn.com/news/story/12586/4730402 領館 1 375
## 5618 https://udn.com/news/story/12586/4730402 數據 1 375
## 5619 https://udn.com/news/story/12586/4730402 盤中 1 375
## 5620 https://udn.com/news/story/12586/4730402 確診 1 375
## 5621 https://udn.com/news/story/12586/4730402 衝突 1 375
## 5622 https://udn.com/news/story/12586/4730402 談判 1 375
## 5623 https://udn.com/news/story/12586/4730402 導致 1 375
## 5624 https://udn.com/news/story/12586/4730402 戰略 1 375
## 5625 https://udn.com/news/story/12586/4730402 澳州 1 375
## 5626 https://udn.com/news/story/12586/4730402 選擇 1 375
## 5627 https://udn.com/news/story/12586/4730402 選舉 1 375
## 5628 https://udn.com/news/story/12586/4730402 頭號 1 375
## 5629 https://udn.com/news/story/12586/4730402 頭號敵人 1 375
## 5630 https://udn.com/news/story/12586/4730402 壓力 1 375
## 5631 https://udn.com/news/story/12586/4730402 擦槍 1 375
## 5632 https://udn.com/news/story/12586/4730402 環球時報 1 375
## 5633 https://udn.com/news/story/12586/4730402 總統 1 375
## 5634 https://udn.com/news/story/12586/4730402 總領館 1 375
## 5635 https://udn.com/news/story/12586/4730402 邊境 1 375
## 5636 https://udn.com/news/story/12586/4730402 關注 1 375
## 5637 https://udn.com/news/story/12586/4730402 關係 1 375
## 5638 https://udn.com/news/story/12586/4730402 關聯 1 375
## 5639 https://udn.com/news/story/12586/4730402 願意 1 375
## 5640 https://udn.com/news/story/12586/4730402 競爭者 1 375
## 5641 https://udn.com/news/story/12586/4730402 變化 1 375
## 5642 https://udn.com/news/story/12586/4730402 變成 1 375
## 5643 https://udn.com/news/story/12586/4730402 觀察 1 375
## 5644 https://udn.com/news/story/12586/4732749 一次 1 339
## 5645 https://udn.com/news/story/12586/4732749 一致 1 339
## 5646 https://udn.com/news/story/12586/4732749 七月 1 339
## 5647 https://udn.com/news/story/12586/4732749 九天 1 339
## 5648 https://udn.com/news/story/12586/4732749 十分 1 339
## 5649 https://udn.com/news/story/12586/4732749 上午 1 339
## 5650 https://udn.com/news/story/12586/4732749 上空 1 339
## 5651 https://udn.com/news/story/12586/4732749 口徑 1 339
## 5652 https://udn.com/news/story/12586/4732749 大陸 1 339
## 5653 https://udn.com/news/story/12586/4732749 大關 1 339
## 5654 https://udn.com/news/story/12586/4732749 不治 1 339
## 5655 https://udn.com/news/story/12586/4732749 中央社 1 339
## 5656 https://udn.com/news/story/12586/4732749 中國人民解放軍 1 339
## 5657 https://udn.com/news/story/12586/4732749 中線 1 339
## 5658 https://udn.com/news/story/12586/4732749 今天上午 1 339
## 5659 https://udn.com/news/story/12586/4732749 分別 1 339
## 5660 https://udn.com/news/story/12586/4732749 日前 1 339
## 5661 https://udn.com/news/story/12586/4732749 日電 1 339
## 5662 https://udn.com/news/story/12586/4732749 北京大學 1 339
## 5663 https://udn.com/news/story/12586/4732749 台北 1 339
## 5664 https://udn.com/news/story/12586/4732749 台海 1 339
## 5665 https://udn.com/news/story/12586/4732749 央視網 1 339
## 5666 https://udn.com/news/story/12586/4732749 平臺 1 339
## 5667 https://udn.com/news/story/12586/4732749 目標 1 339
## 5668 https://udn.com/news/story/12586/4732749 全球 1 339
## 5669 https://udn.com/news/story/12586/4732749 向西 1 339
## 5670 https://udn.com/news/story/12586/4732749 行蹤 1 339
## 5671 https://udn.com/news/story/12586/4732749 西南 1 339
## 5672 https://udn.com/news/story/12586/4732749 形式 1 339
## 5673 https://udn.com/news/story/12586/4732749 折往 1 339
## 5674 https://udn.com/news/story/12586/4732749 來源 1 339
## 5675 https://udn.com/news/story/12586/4732749 往北 1 339
## 5676 https://udn.com/news/story/12586/4732749 東京灣 1 339
## 5677 https://udn.com/news/story/12586/4732749 南華早報 1 339
## 5678 https://udn.com/news/story/12586/4732749 南端 1 339
## 5679 https://udn.com/news/story/12586/4732749 指出 1 339
## 5680 https://udn.com/news/story/12586/4732749 指稱 1 339
## 5681 https://udn.com/news/story/12586/4732749 相同 1 339
## 5682 https://udn.com/news/story/12586/4732749 相較 1 339
## 5683 https://udn.com/news/story/12586/4732749 研究院 1 339
## 5684 https://udn.com/news/story/12586/4732749 突破 1 339
## 5685 https://udn.com/news/story/12586/4732749 美國空軍 1 339
## 5686 https://udn.com/news/story/12586/4732749 計畫 1 339
## 5687 https://udn.com/news/story/12586/4732749 軍機 1 339
## 5688 https://udn.com/news/story/12586/4732749 飛越 1 339
## 5689 https://udn.com/news/story/12586/4732749 展開 1 339
## 5690 https://udn.com/news/story/12586/4732749 島鏈 1 339
## 5691 https://udn.com/news/story/12586/4732749 海上 1 339
## 5692 https://udn.com/news/story/12586/4732749 海洋 1 339
## 5693 https://udn.com/news/story/12586/4732749 密集 1 339
## 5694 https://udn.com/news/story/12586/4732749 掠海 1 339
## 5695 https://udn.com/news/story/12586/4732749 推特上 1 339
## 5696 https://udn.com/news/story/12586/4732749 晚間 1 339
## 5697 https://udn.com/news/story/12586/4732749 第一 1 339
## 5698 https://udn.com/news/story/12586/4732749 第五 1 339
## 5699 https://udn.com/news/story/12586/4732749 組織 1 339
## 5700 https://udn.com/news/story/12586/4732749 這架 1 339
## 5701 https://udn.com/news/story/12586/4732749 這項 1 339
## 5702 https://udn.com/news/story/12586/4732749 連日來 1 339
## 5703 https://udn.com/news/story/12586/4732749 媒體 1 339
## 5704 https://udn.com/news/story/12586/4732749 幾次 1 339
## 5705 https://udn.com/news/story/12586/4732749 提及 1 339
## 5706 https://udn.com/news/story/12586/4732749 提到 1 339
## 5707 https://udn.com/news/story/12586/4732749 超低空 1 339
## 5708 https://udn.com/news/story/12586/4732749 距離 1 339
## 5709 https://udn.com/news/story/12586/4732749 週一 1 339
## 5710 https://udn.com/news/story/12586/4732749 新冠肺炎 1 339
## 5711 https://udn.com/news/story/12586/4732749 當地 1 339
## 5712 https://udn.com/news/story/12586/4732749 萬人 1 339
## 5713 https://udn.com/news/story/12586/4732749 解放軍 1 339
## 5714 https://udn.com/news/story/12586/4732749 資訊 1 339
## 5715 https://udn.com/news/story/12586/4732749 較遠 1 339
## 5716 https://udn.com/news/story/12586/4732749 逼近 1 339
## 5717 https://udn.com/news/story/12586/4732749 電子 1 339
## 5718 https://udn.com/news/story/12586/4732749 圖表 1 339
## 5719 https://udn.com/news/story/12586/4732749 圖像 1 339
## 5720 https://udn.com/news/story/12586/4732749 實施 1 339
## 5721 https://udn.com/news/story/12586/4732749 實彈演習 1 339
## 5722 https://udn.com/news/story/12586/4732749 監視 1 339
## 5723 https://udn.com/news/story/12586/4732749 稱為 1 339
## 5724 https://udn.com/news/story/12586/4732749 數據 1 339
## 5725 https://udn.com/news/story/12586/4732749 確診 1 339
## 5726 https://udn.com/news/story/12586/4732749 輪番 1 339
## 5727 https://udn.com/news/story/12586/4732749 靠近 1 339
## 5728 https://udn.com/news/story/12586/4732749 聯合 1 339
## 5729 https://udn.com/news/story/12586/4732749 聲稱 1 339
## 5730 https://udn.com/news/story/12586/4732749 顯示 1 339
## 5731 https://udn.com/news/story/6809/4271642 一步 1 273
## 5732 https://udn.com/news/story/6809/4271642 一些 1 273
## 5733 https://udn.com/news/story/6809/4271642 上台 1 273
## 5734 https://udn.com/news/story/6809/4271642 大致 1 273
## 5735 https://udn.com/news/story/6809/4271642 不會 1 273
## 5736 https://udn.com/news/story/6809/4271642 中央社 1 273
## 5737 https://udn.com/news/story/6809/4271642 中油氣 1 273
## 5738 https://udn.com/news/story/6809/4271642 中華 1 273
## 5739 https://udn.com/news/story/6809/4271642 中菲 1 273
## 5740 https://udn.com/news/story/6809/4271642 互不 1 273
## 5741 https://udn.com/news/story/6809/4271642 仍舊 1 273
## 5742 https://udn.com/news/story/6809/4271642 公司 1 273
## 5743 https://udn.com/news/story/6809/4271642 主任 1 273
## 5744 https://udn.com/news/story/6809/4271642 包括 1 273
## 5745 https://udn.com/news/story/6809/4271642 外國 1 273
## 5746 https://udn.com/news/story/6809/4271642 未來 1 273
## 5747 https://udn.com/news/story/6809/4271642 未來學 1 273
## 5748 https://udn.com/news/story/6809/4271642 本國 1 273
## 5749 https://udn.com/news/story/6809/4271642 用來 1 273
## 5750 https://udn.com/news/story/6809/4271642 目前 1 273
## 5751 https://udn.com/news/story/6809/4271642 自然資源 1 273
## 5752 https://udn.com/news/story/6809/4271642 自給自足 1 273
## 5753 https://udn.com/news/story/6809/4271642 位於 1 273
## 5754 https://udn.com/news/story/6809/4271642 何不 1 273
## 5755 https://udn.com/news/story/6809/4271642 告訴 1 273
## 5756 https://udn.com/news/story/6809/4271642 找到 1 273
## 5757 https://udn.com/news/story/6809/4271642 抗議 1 273
## 5758 https://udn.com/news/story/6809/4271642 改變 1 273
## 5759 https://udn.com/news/story/6809/4271642 決心 1 273
## 5760 https://udn.com/news/story/6809/4271642 取得 1 273
## 5761 https://udn.com/news/story/6809/4271642 延續下去 1 273
## 5762 https://udn.com/news/story/6809/4271642 所長 1 273
## 5763 https://udn.com/news/story/6809/4271642 承認 1 273
## 5764 https://udn.com/news/story/6809/4271642 法律 1 273
## 5765 https://udn.com/news/story/6809/4271642 法院 1 273
## 5766 https://udn.com/news/story/6809/4271642 爭議 1 273
## 5767 https://udn.com/news/story/6809/4271642 阻礙 1 273
## 5768 https://udn.com/news/story/6809/4271642 保障 1 273
## 5769 https://udn.com/news/story/6809/4271642 則說 1 273
## 5770 https://udn.com/news/story/6809/4271642 思維 1 273
## 5771 https://udn.com/news/story/6809/4271642 相信 1 273
## 5772 https://udn.com/news/story/6809/4271642 相當於 1 273
## 5773 https://udn.com/news/story/6809/4271642 看來 1 273
## 5774 https://udn.com/news/story/6809/4271642 研究所 1 273
## 5775 https://udn.com/news/story/6809/4271642 突破性 1 273
## 5776 https://udn.com/news/story/6809/4271642 紅線 1 273
## 5777 https://udn.com/news/story/6809/4271642 胡波 1 273
## 5778 https://udn.com/news/story/6809/4271642 若菲中 1 273
## 5779 https://udn.com/news/story/6809/4271642 計劃 1 273
## 5780 https://udn.com/news/story/6809/4271642 限制 1 273
## 5781 https://udn.com/news/story/6809/4271642 修建 1 273
## 5782 https://udn.com/news/story/6809/4271642 展開 1 273
## 5783 https://udn.com/news/story/6809/4271642 時期 1 273
## 5784 https://udn.com/news/story/6809/4271642 海牙 1 273
## 5785 https://udn.com/news/story/6809/4271642 海里 1 273
## 5786 https://udn.com/news/story/6809/4271642 海域 1 273
## 5787 https://udn.com/news/story/6809/4271642 能源 1 273
## 5788 https://udn.com/news/story/6809/4271642 能源安全 1 273
## 5789 https://udn.com/news/story/6809/4271642 記者 1 273
## 5790 https://udn.com/news/story/6809/4271642 針對 1 273
## 5791 https://udn.com/news/story/6809/4271642 馬尼拉 1 273
## 5792 https://udn.com/news/story/6809/4271642 勘探 1 273
## 5793 https://udn.com/news/story/6809/4271642 國內法 1 273
## 5794 https://udn.com/news/story/6809/4271642 國家 1 273
## 5795 https://udn.com/news/story/6809/4271642 基於 1 273
## 5796 https://udn.com/news/story/6809/4271642 密切 1 273
## 5797 https://udn.com/news/story/6809/4271642 專家 1 273
## 5798 https://udn.com/news/story/6809/4271642 專屬經濟區 1 273
## 5799 https://udn.com/news/story/6809/4271642 常設 1 273
## 5800 https://udn.com/news/story/6809/4271642 探討 1 273
## 5801 https://udn.com/news/story/6809/4271642 推演 1 273
## 5802 https://udn.com/news/story/6809/4271642 理性 1 273
## 5803 https://udn.com/news/story/6809/4271642 畢竟 1 273
## 5804 https://udn.com/news/story/6809/4271642 荷蘭 1 273
## 5805 https://udn.com/news/story/6809/4271642 處理方式 1 273
## 5806 https://udn.com/news/story/6809/4271642 設施 1 273
## 5807 https://udn.com/news/story/6809/4271642 閆岩 1 273
## 5808 https://udn.com/news/story/6809/4271642 單獨 1 273
## 5809 https://udn.com/news/story/6809/4271642 尋求 1 273
## 5810 https://udn.com/news/story/6809/4271642 最大 1 273
## 5811 https://udn.com/news/story/6809/4271642 最大化 1 273
## 5812 https://udn.com/news/story/6809/4271642 無法 1 273
## 5813 https://udn.com/news/story/6809/4271642 程度 1 273
## 5814 https://udn.com/news/story/6809/4271642 開鑽 1 273
## 5815 https://udn.com/news/story/6809/4271642 黃岩 1 273
## 5816 https://udn.com/news/story/6809/4271642 感知 1 273
## 5817 https://udn.com/news/story/6809/4271642 董事 1 273
## 5818 https://udn.com/news/story/6809/4271642 解決之道 1 273
## 5819 https://udn.com/news/story/6809/4271642 資源 1 273
## 5820 https://udn.com/news/story/6809/4271642 預期 1 273
## 5821 https://udn.com/news/story/6809/4271642 預測 1 273
## 5822 https://udn.com/news/story/6809/4271642 劃出 1 273
## 5823 https://udn.com/news/story/6809/4271642 實現 1 273
## 5824 https://udn.com/news/story/6809/4271642 實質性 1 273
## 5825 https://udn.com/news/story/6809/4271642 態度 1 273
## 5826 https://udn.com/news/story/6809/4271642 態勢 1 273
## 5827 https://udn.com/news/story/6809/4271642 與會者 1 273
## 5828 https://udn.com/news/story/6809/4271642 領袖 1 273
## 5829 https://udn.com/news/story/6809/4271642 樂觀 1 273
## 5830 https://udn.com/news/story/6809/4271642 歐提茲 1 273
## 5831 https://udn.com/news/story/6809/4271642 範圍 1 273
## 5832 https://udn.com/news/story/6809/4271642 學會 1 273
## 5833 https://udn.com/news/story/6809/4271642 憲法 1 273
## 5834 https://udn.com/news/story/6809/4271642 擁有 1 273
## 5835 https://udn.com/news/story/6809/4271642 辦法 1 273
## 5836 https://udn.com/news/story/6809/4271642 應先 1 273
## 5837 https://udn.com/news/story/6809/4271642 擱置 1 273
## 5838 https://udn.com/news/story/6809/4271642 還未 1 273
## 5839 https://udn.com/news/story/6809/4271642 還在 1 273
## 5840 https://udn.com/news/story/6809/4271642 謹慎 1 273
## 5841 https://udn.com/news/story/6809/4271642 釐清 1 273
## 5842 https://udn.com/news/story/6809/4271642 雙方 1 273
## 5843 https://udn.com/news/story/6809/4271642 關注 1 273
## 5844 https://udn.com/news/story/6809/4271642 願意 1 273
## 5845 https://udn.com/news/story/6809/4271642 觸及 1 273
## 5846 https://udn.com/news/story/6809/4272045 一致 1 158
## 5847 https://udn.com/news/story/6809/4272045 一致同意 1 158
## 5848 https://udn.com/news/story/6809/4272045 人力資源 1 158
## 5849 https://udn.com/news/story/6809/4272045 中部 1 158
## 5850 https://udn.com/news/story/6809/4272045 予以 1 158
## 5851 https://udn.com/news/story/6809/4272045 仍然 1 158
## 5852 https://udn.com/news/story/6809/4272045 公民 1 158
## 5853 https://udn.com/news/story/6809/4272045 公約 1 158
## 5854 https://udn.com/news/story/6809/4272045 手續 1 158
## 5855 https://udn.com/news/story/6809/4272045 日商 1 158
## 5856 https://udn.com/news/story/6809/4272045 充與范 1 158
## 5857 https://udn.com/news/story/6809/4272045 外長 1 158
## 5858 https://udn.com/news/story/6809/4272045 外務大臣 1 158
## 5859 https://udn.com/news/story/6809/4272045 市場 1 158
## 5860 https://udn.com/news/story/6809/4272045 申請 1 158
## 5861 https://udn.com/news/story/6809/4272045 先後 1 158
## 5862 https://udn.com/news/story/6809/4272045 共同 1 158
## 5863 https://udn.com/news/story/6809/4272045 同意 1 158
## 5864 https://udn.com/news/story/6809/4272045 因應 1 158
## 5865 https://udn.com/news/story/6809/4272045 多邊 1 158
## 5866 https://udn.com/news/story/6809/4272045 有利 1 158
## 5867 https://udn.com/news/story/6809/4272045 兩國 1 158
## 5868 https://udn.com/news/story/6809/4272045 協會 1 158
## 5869 https://udn.com/news/story/6809/4272045 呼籲 1 158
## 5870 https://udn.com/news/story/6809/4272045 官員 1 158
## 5871 https://udn.com/news/story/6809/4272045 東協 1 158
## 5872 https://udn.com/news/story/6809/4272045 東南亞 1 158
## 5873 https://udn.com/news/story/6809/4272045 社會 1 158
## 5874 https://udn.com/news/story/6809/4272045 肯定 1 158
## 5875 https://udn.com/news/story/6809/4272045 近日 1 158
## 5876 https://udn.com/news/story/6809/4272045 青年報 1 158
## 5877 https://udn.com/news/story/6809/4272045 建議 1 158
## 5878 https://udn.com/news/story/6809/4272045 很大 1 158
## 5879 https://udn.com/news/story/6809/4272045 昨天 1 158
## 5880 https://udn.com/news/story/6809/4272045 茂木敏 1 158
## 5881 https://udn.com/news/story/6809/4272045 重要 1 158
## 5882 https://udn.com/news/story/6809/4272045 重要性 1 158
## 5883 https://udn.com/news/story/6809/4272045 峴港 1 158
## 5884 https://udn.com/news/story/6809/4272045 時說 1 158
## 5885 https://udn.com/news/story/6809/4272045 氣候變化 1 158
## 5886 https://udn.com/news/story/6809/4272045 海洋法 1 158
## 5887 https://udn.com/news/story/6809/4272045 貢獻 1 158
## 5888 https://udn.com/news/story/6809/4272045 高層 1 158
## 5889 https://udn.com/news/story/6809/4272045 做出 1 158
## 5890 https://udn.com/news/story/6809/4272045 區域 1 158
## 5891 https://udn.com/news/story/6809/4272045 國家 1 158
## 5892 https://udn.com/news/story/6809/4272045 國際 1 158
## 5893 https://udn.com/news/story/6809/4272045 國際法 1 158
## 5894 https://udn.com/news/story/6809/4272045 培訓 1 158
## 5895 https://udn.com/news/story/6809/4272045 密切合作 1 158
## 5896 https://udn.com/news/story/6809/4272045 接受 1 158
## 5897 https://udn.com/news/story/6809/4272045 條件 1 158
## 5898 https://udn.com/news/story/6809/4272045 訪問 1 158
## 5899 https://udn.com/news/story/6809/4272045 創造 1 158
## 5900 https://udn.com/news/story/6809/4272045 勞務 1 158
## 5901 https://udn.com/news/story/6809/4272045 報導 1 158
## 5902 https://udn.com/news/story/6809/4272045 提議 1 158
## 5903 https://udn.com/news/story/6809/4272045 援助 1 158
## 5904 https://udn.com/news/story/6809/4272045 貿易 1 158
## 5905 https://udn.com/news/story/6809/4272045 越日 1 158
## 5906 https://udn.com/news/story/6809/4272045 越南政府 1 158
## 5907 https://udn.com/news/story/6809/4272045 進口 1 158
## 5908 https://udn.com/news/story/6809/4272045 開發 1 158
## 5909 https://udn.com/news/story/6809/4272045 新聞 1 158
## 5910 https://udn.com/news/story/6809/4272045 會談 1 158
## 5911 https://udn.com/news/story/6809/4272045 經濟 1 158
## 5912 https://udn.com/news/story/6809/4272045 經營 1 158
## 5913 https://udn.com/news/story/6809/4272045 農產品 1 158
## 5914 https://udn.com/news/story/6809/4272045 農業 1 158
## 5915 https://udn.com/news/story/6809/4272045 達成 1 158
## 5916 https://udn.com/news/story/6809/4272045 鼓勵 1 158
## 5917 https://udn.com/news/story/6809/4272045 維持 1 158
## 5918 https://udn.com/news/story/6809/4272045 網站 1 158
## 5919 https://udn.com/news/story/6809/4272045 領域 1 158
## 5920 https://udn.com/news/story/6809/4272045 增設 1 158
## 5921 https://udn.com/news/story/6809/4272045 潛力 1 158
## 5922 https://udn.com/news/story/6809/4272045 論壇 1 158
## 5923 https://udn.com/news/story/6809/4272045 遵守 1 158
## 5924 https://udn.com/news/story/6809/4272045 總領事館 1 158
## 5925 https://udn.com/news/story/6809/4272045 聯合國 1 158
## 5926 https://udn.com/news/story/6809/4272045 擴大 1 158
## 5927 https://udn.com/news/story/6809/4272045 簡化 1 158
## 5928 https://udn.com/news/story/6809/4272045 雙方同意 1 158
## 5929 https://udn.com/news/story/6809/4272045 簽證 1 158
## 5930 https://udn.com/news/story/6809/4272045 關注 1 158
## 5931 https://udn.com/news/story/6809/4272045 繼續 1 158
## 5932 https://udn.com/news/story/6809/4279234 一直 1 268
## 5933 https://udn.com/news/story/6809/4279234 人口 1 268
## 5934 https://udn.com/news/story/6809/4279234 土納海 1 268
## 5935 https://udn.com/news/story/6809/4279234 大部分 1 268
## 5936 https://udn.com/news/story/6809/4279234 已經 1 268
## 5937 https://udn.com/news/story/6809/4279234 不讓 1 268
## 5938 https://udn.com/news/story/6809/4279234 中方 1 268
## 5939 https://udn.com/news/story/6809/4279234 之間 1 268
## 5940 https://udn.com/news/story/6809/4279234 公司 1 268
## 5941 https://udn.com/news/story/6809/4279234 切實 1 268
## 5942 https://udn.com/news/story/6809/4279234 友誼 1 268
## 5943 https://udn.com/news/story/6809/4279234 天然氣 1 268
## 5944 https://udn.com/news/story/6809/4279234 月底 1 268
## 5945 https://udn.com/news/story/6809/4279234 主張 1 268
## 5946 https://udn.com/news/story/6809/4279234 出動 1 268
## 5947 https://udn.com/news/story/6809/4279234 加強 1 268
## 5948 https://udn.com/news/story/6809/4279234 北京 1 268
## 5949 https://udn.com/news/story/6809/4279234 北納 1 268
## 5950 https://udn.com/news/story/6809/4279234 再起 1 268
## 5951 https://udn.com/news/story/6809/4279234 各國 1 268
## 5952 https://udn.com/news/story/6809/4279234 回覆 1 268
## 5953 https://udn.com/news/story/6809/4279234 地質 1 268
## 5954 https://udn.com/news/story/6809/4279234 多次 1 268
## 5955 https://udn.com/news/story/6809/4279234 西側 1 268
## 5956 https://udn.com/news/story/6809/4279234 佐科威 1 268
## 5957 https://udn.com/news/story/6809/4279234 局勢 1 268
## 5958 https://udn.com/news/story/6809/4279234 巡邏 1 268
## 5959 https://udn.com/news/story/6809/4279234 例行 1 268
## 5960 https://udn.com/news/story/6809/4279234 依據 1 268
## 5961 https://udn.com/news/story/6809/4279234 和平 1 268
## 5962 https://udn.com/news/story/6809/4279234 官員 1 268
## 5963 https://udn.com/news/story/6809/4279234 東南亞 1 268
## 5964 https://udn.com/news/story/6809/4279234 沿海 1 268
## 5965 https://udn.com/news/story/6809/4279234 近來 1 268
## 5966 https://udn.com/news/story/6809/4279234 近期 1 268
## 5967 https://udn.com/news/story/6809/4279234 阻擾 1 268
## 5968 https://udn.com/news/story/6809/4279234 前往 1 268
## 5969 https://udn.com/news/story/6809/4279234 南沙 1 268
## 5970 https://udn.com/news/story/6809/4279234 持續 1 268
## 5971 https://udn.com/news/story/6809/4279234 指控 1 268
## 5972 https://udn.com/news/story/6809/4279234 昨天 1 268
## 5973 https://udn.com/news/story/6809/4279234 是否 1 268
## 5974 https://udn.com/news/story/6809/4279234 查證 1 268
## 5975 https://udn.com/news/story/6809/4279234 毗鄰 1 268
## 5976 https://udn.com/news/story/6809/4279234 活動 1 268
## 5977 https://udn.com/news/story/6809/4279234 美孚 1 268
## 5978 https://udn.com/news/story/6809/4279234 美國 1 268
## 5979 https://udn.com/news/story/6809/4279234 埃克森 1 268
## 5980 https://udn.com/news/story/6809/4279234 島嶼 1 268
## 5981 https://udn.com/news/story/6809/4279234 捍衛 1 268
## 5982 https://udn.com/news/story/6809/4279234 捕魚 1 268
## 5983 https://udn.com/news/story/6809/4279234 海上 1 268
## 5984 https://udn.com/news/story/6809/4279234 海巡 1 268
## 5985 https://udn.com/news/story/6809/4279234 海里 1 268
## 5986 https://udn.com/news/story/6809/4279234 海岸 1 268
## 5987 https://udn.com/news/story/6809/4279234 海洋 1 268
## 5988 https://udn.com/news/story/6809/4279234 海軍 1 268
## 5989 https://udn.com/news/story/6809/4279234 消息 1 268
## 5990 https://udn.com/news/story/6809/4279234 記者 1 268
## 5991 https://udn.com/news/story/6809/4279234 記者會 1 268
## 5992 https://udn.com/news/story/6809/4279234 貢獻 1 268
## 5993 https://udn.com/news/story/6809/4279234 馬來半島 1 268
## 5994 https://udn.com/news/story/6809/4279234 馬來西亞 1 268
## 5995 https://udn.com/news/story/6809/4279234 做出 1 268
## 5996 https://udn.com/news/story/6809/4279234 國防部 1 268
## 5997 https://udn.com/news/story/6809/4279234 國軍 1 268
## 5998 https://udn.com/news/story/6809/4279234 執法 1 268
## 5999 https://udn.com/news/story/6809/4279234 婆羅洲 1 268
## 6000 https://udn.com/news/story/6809/4279234 專屬經濟區 1 268
## 6001 https://udn.com/news/story/6809/4279234 淺灘 1 268
## 6002 https://udn.com/news/story/6809/4279234 率領 1 268
## 6003 https://udn.com/news/story/6809/4279234 符合 1 268
## 6004 https://udn.com/news/story/6809/4279234 組成 1 268
## 6005 https://udn.com/news/story/6809/4279234 船艦 1 268
## 6006 https://udn.com/news/story/6809/4279234 部分 1 268
## 6007 https://udn.com/news/story/6809/4279234 釣船 1 268
## 6008 https://udn.com/news/story/6809/4279234 尊重 1 268
## 6009 https://udn.com/news/story/6809/4279234 提問 1 268
## 6010 https://udn.com/news/story/6809/4279234 發生衝突 1 268
## 6011 https://udn.com/news/story/6809/4279234 發言人 1 268
## 6012 https://udn.com/news/story/6809/4279234 結束 1 268
## 6013 https://udn.com/news/story/6809/4279234 菲律賓 1 268
## 6014 https://udn.com/news/story/6809/4279234 視察 1 268
## 6015 https://udn.com/news/story/6809/4279234 進入 1 268
## 6016 https://udn.com/news/story/6809/4279234 開採 1 268
## 6017 https://udn.com/news/story/6809/4279234 傳出 1 268
## 6018 https://udn.com/news/story/6809/4279234 當地 1 268
## 6019 https://udn.com/news/story/6809/4279234 萬多 1 268
## 6020 https://udn.com/news/story/6809/4279234 對峙 1 268
## 6021 https://udn.com/news/story/6809/4279234 漁船 1 268
## 6022 https://udn.com/news/story/6809/4279234 漁業資源 1 268
## 6023 https://udn.com/news/story/6809/4279234 監控 1 268
## 6024 https://udn.com/news/story/6809/4279234 稱思政灘 1 268
## 6025 https://udn.com/news/story/6809/4279234 管轄權 1 268
## 6026 https://udn.com/news/story/6809/4279234 維護 1 268
## 6027 https://udn.com/news/story/6809/4279234 複雜化 1 268
## 6028 https://udn.com/news/story/6809/4279234 戰機 1 268
## 6029 https://udn.com/news/story/6809/4279234 擁有 1 268
## 6030 https://udn.com/news/story/6809/4279234 機構 1 268
## 6031 https://udn.com/news/story/6809/4279234 總統 1 268
## 6032 https://udn.com/news/story/6809/4279234 聲稱 1 268
## 6033 https://udn.com/news/story/6809/4279234 舉行 1 268
## 6034 https://udn.com/news/story/6809/4279234 歸屬 1 268
## 6035 https://udn.com/news/story/6809/4279234 豐富 1 268
## 6036 https://udn.com/news/story/6809/4279234 闖進 1 268
## 6037 https://udn.com/news/story/6809/4279234 穩定 1 268
## 6038 https://udn.com/news/story/6809/4279234 艦艇 1 268
## 6039 https://udn.com/news/story/6809/4279234 警衛隊 1 268
## 6040 https://udn.com/news/story/6809/4279234 護衛 1 268
## 6041 https://udn.com/news/story/6809/4279234 權利 1 268
## 6042 https://udn.com/news/story/6809/4308863 一部分 1 75
## 6043 https://udn.com/news/story/6809/4308863 上述 1 75
## 6044 https://udn.com/news/story/6809/4308863 中國 1 75
## 6045 https://udn.com/news/story/6809/4308863 今年 1 75
## 6046 https://udn.com/news/story/6809/4308863 反對 1 75
## 6047 https://udn.com/news/story/6809/4308863 支持 1 75
## 6048 https://udn.com/news/story/6809/4308863 方式 1 75
## 6049 https://udn.com/news/story/6809/4308863 日本 1 75
## 6050 https://udn.com/news/story/6809/4308863 日常 1 75
## 6051 https://udn.com/news/story/6809/4308863 台灣 1 75
## 6052 https://udn.com/news/story/6809/4308863 任務 1 75
## 6053 https://udn.com/news/story/6809/4308863 合法 1 75
## 6054 https://udn.com/news/story/6809/4308863 此次 1 75
## 6055 https://udn.com/news/story/6809/4308863 行經 1 75
## 6056 https://udn.com/news/story/6809/4308863 並非 1 75
## 6057 https://udn.com/news/story/6809/4308863 使用 1 75
## 6058 https://udn.com/news/story/6809/4308863 和平 1 75
## 6059 https://udn.com/news/story/6809/4308863 附近 1 75
## 6060 https://udn.com/news/story/6809/4308863 挑戰 1 75
## 6061 https://udn.com/news/story/6809/4308863 限制 1 75
## 6062 https://udn.com/news/story/6809/4308863 時報 1 75
## 6063 https://udn.com/news/story/6809/4308863 海軍 1 75
## 6064 https://udn.com/news/story/6809/4308863 海域 1 75
## 6065 https://udn.com/news/story/6809/4308863 特定 1 75
## 6066 https://udn.com/news/story/6809/4308863 針對 1 75
## 6067 https://udn.com/news/story/6809/4308863 偏向 1 75
## 6068 https://udn.com/news/story/6809/4308863 區域 1 75
## 6069 https://udn.com/news/story/6809/4308863 國家 1 75
## 6070 https://udn.com/news/story/6809/4308863 國際法 1 75
## 6071 https://udn.com/news/story/6809/4308863 第一次 1 75
## 6072 https://udn.com/news/story/6809/4308863 第七 1 75
## 6073 https://udn.com/news/story/6809/4308863 設下 1 75
## 6074 https://udn.com/news/story/6809/4308863 這是 1 75
## 6075 https://udn.com/news/story/6809/4308863 報導 1 75
## 6076 https://udn.com/news/story/6809/4308863 無害 1 75
## 6077 https://udn.com/news/story/6809/4308863 發言人 1 75
## 6078 https://udn.com/news/story/6809/4308863 越南 1 75
## 6079 https://udn.com/news/story/6809/4308863 維持 1 75
## 6080 https://udn.com/news/story/6809/4308863 維護 1 75
## 6081 https://udn.com/news/story/6809/4308863 戰鬥艦 1 75
## 6082 https://udn.com/news/story/6809/4308863 據信 1 75
## 6083 https://udn.com/news/story/6809/4308863 遵循 1 75
## 6084 https://udn.com/news/story/6809/4308863 還說 1 75
## 6085 https://udn.com/news/story/6809/4308863 瀕海 1 75
## 6086 https://udn.com/news/story/6809/4308863 艦隊 1 75
## 6087 https://udn.com/news/story/6809/4313108 大會 1 348
## 6088 https://udn.com/news/story/6809/4313108 不分晝夜 1 348
## 6089 https://udn.com/news/story/6809/4313108 不約而同 1 348
## 6090 https://udn.com/news/story/6809/4313108 丹麥 1 348
## 6091 https://udn.com/news/story/6809/4313108 內爾 1 348
## 6092 https://udn.com/news/story/6809/4313108 分別 1 348
## 6093 https://udn.com/news/story/6809/4313108 分析 1 348
## 6094 https://udn.com/news/story/6809/4313108 及布納 1 348
## 6095 https://udn.com/news/story/6809/4313108 友好 1 348
## 6096 https://udn.com/news/story/6809/4313108 太平洋 1 348
## 6097 https://udn.com/news/story/6809/4313108 太空 1 348
## 6098 https://udn.com/news/story/6809/4313108 支持 1 348
## 6099 https://udn.com/news/story/6809/4313108 主席 1 348
## 6100 https://udn.com/news/story/6809/4313108 主辦 1 348
## 6101 https://udn.com/news/story/6809/4313108 主辦單位 1 348
## 6102 https://udn.com/news/story/6809/4313108 他並 1 348
## 6103 https://udn.com/news/story/6809/4313108 以前 1 348
## 6104 https://udn.com/news/story/6809/4313108 凸顯 1 348
## 6105 https://udn.com/news/story/6809/4313108 刊出 1 348
## 6106 https://udn.com/news/story/6809/4313108 北大西洋公約組織 1 348
## 6107 https://udn.com/news/story/6809/4313108 去年 1 348
## 6108 https://udn.com/news/story/6809/4313108 可行性 1 348
## 6109 https://udn.com/news/story/6809/4313108 司令部 1 348
## 6110 https://udn.com/news/story/6809/4313108 外交 1 348
## 6111 https://udn.com/news/story/6809/4313108 布納凡 1 348
## 6112 https://udn.com/news/story/6809/4313108 平起平坐 1 348
## 6113 https://udn.com/news/story/6809/4313108 交流 1 348
## 6114 https://udn.com/news/story/6809/4313108 任務 1 348
## 6115 https://udn.com/news/story/6809/4313108 企業 1 348
## 6116 https://udn.com/news/story/6809/4313108 光纖 1 348
## 6117 https://udn.com/news/story/6809/4313108 全球 1 348
## 6118 https://udn.com/news/story/6809/4313108 全場 1 348
## 6119 https://udn.com/news/story/6809/4313108 印太 1 348
## 6120 https://udn.com/news/story/6809/4313108 印尼 1 348
## 6121 https://udn.com/news/story/6809/4313108 各國 1 348
## 6122 https://udn.com/news/story/6809/4313108 年均 1 348
## 6123 https://udn.com/news/story/6809/4313108 成功 1 348
## 6124 https://udn.com/news/story/6809/4313108 有效 1 348
## 6125 https://udn.com/news/story/6809/4313108 次長 1 348
## 6126 https://udn.com/news/story/6809/4313108 考慮 1 348
## 6127 https://udn.com/news/story/6809/4313108 自主 1 348
## 6128 https://udn.com/news/story/6809/4313108 行動 1 348
## 6129 https://udn.com/news/story/6809/4313108 行經 1 348
## 6130 https://udn.com/news/story/6809/4313108 作戰 1 348
## 6131 https://udn.com/news/story/6809/4313108 快速 1 348
## 6132 https://udn.com/news/story/6809/4313108 扮演 1 348
## 6133 https://udn.com/news/story/6809/4313108 技術 1 348
## 6134 https://udn.com/news/story/6809/4313108 更給 1 348
## 6135 https://udn.com/news/story/6809/4313108 決心 1 348
## 6136 https://udn.com/news/story/6809/4313108 角色 1 348
## 6137 https://udn.com/news/story/6809/4313108 身分 1 348
## 6138 https://udn.com/news/story/6809/4313108 亞太地區 1 348
## 6139 https://udn.com/news/story/6809/4313108 亞洲 1 348
## 6140 https://udn.com/news/story/6809/4313108 來自 1 348
## 6141 https://udn.com/news/story/6809/4313108 依賴 1 348
## 6142 https://udn.com/news/story/6809/4313108 兩人 1 348
## 6143 https://udn.com/news/story/6809/4313108 受邀 1 348
## 6144 https://udn.com/news/story/6809/4313108 武獲 1 348
## 6145 https://udn.com/news/story/6809/4313108 法兩 1 348
## 6146 https://udn.com/news/story/6809/4313108 法艦 1 348
## 6147 https://udn.com/news/story/6809/4313108 表現 1 348
## 6148 https://udn.com/news/story/6809/4313108 近年 1 348
## 6149 https://udn.com/news/story/6809/4313108 長航 1 348
## 6150 https://udn.com/news/story/6809/4313108 保護 1 348
## 6151 https://udn.com/news/story/6809/4313108 建立 1 348
## 6152 https://udn.com/news/story/6809/4313108 建軍 1 348
## 6153 https://udn.com/news/story/6809/4313108 是否 1 348
## 6154 https://udn.com/news/story/6809/4313108 派員 1 348
## 6155 https://udn.com/news/story/6809/4313108 派遣 1 348
## 6156 https://udn.com/news/story/6809/4313108 皇家 1 348
## 6157 https://udn.com/news/story/6809/4313108 美軍 1 348
## 6158 https://udn.com/news/story/6809/4313108 美國國防部 1 348
## 6159 https://udn.com/news/story/6809/4313108 致詞 1 348
## 6160 https://udn.com/news/story/6809/4313108 英艦 1 348
## 6161 https://udn.com/news/story/6809/4313108 計有 1 348
## 6162 https://udn.com/news/story/6809/4313108 計劃 1 348
## 6163 https://udn.com/news/story/6809/4313108 軍力 1 348
## 6164 https://udn.com/news/story/6809/4313108 軍艦 1 348
## 6165 https://udn.com/news/story/6809/4313108 面子 1 348
## 6166 https://udn.com/news/story/6809/4313108 倫敦 1 348
## 6167 https://udn.com/news/story/6809/4313108 值得一提的是 1 348
## 6168 https://udn.com/news/story/6809/4313108 島鏈 1 348
## 6169 https://udn.com/news/story/6809/4313108 挪威 1 348
## 6170 https://udn.com/news/story/6809/4313108 捍衛 1 348
## 6171 https://udn.com/news/story/6809/4313108 時代 1 348
## 6172 https://udn.com/news/story/6809/4313108 根特 1 348
## 6173 https://udn.com/news/story/6809/4313108 海洋 1 348
## 6174 https://udn.com/news/story/6809/4313108 海疆 1 348
## 6175 https://udn.com/news/story/6809/4313108 海纜 1 348
## 6176 https://udn.com/news/story/6809/4313108 破壞 1 348
## 6177 https://udn.com/news/story/6809/4313108 討論 1 348
## 6178 https://udn.com/news/story/6809/4313108 貢獻 1 348
## 6179 https://udn.com/news/story/6809/4313108 退役 1 348
## 6180 https://udn.com/news/story/6809/4313108 退將 1 348
## 6181 https://udn.com/news/story/6809/4313108 馬來西亞 1 348
## 6182 https://udn.com/news/story/6809/4313108 做出 1 348
## 6183 https://udn.com/news/story/6809/4313108 副部長 1 348
## 6184 https://udn.com/news/story/6809/4313108 參加 1 348
## 6185 https://udn.com/news/story/6809/4313108 國民外交 1 348
## 6186 https://udn.com/news/story/6809/4313108 國防 1 348
## 6187 https://udn.com/news/story/6809/4313108 國軍 1 348
## 6188 https://udn.com/news/story/6809/4313108 國家 1 348
## 6189 https://udn.com/news/story/6809/4313108 國旗 1 348
## 6190 https://udn.com/news/story/6809/4313108 執法 1 348
## 6191 https://udn.com/news/story/6809/4313108 堅定 1 348
## 6192 https://udn.com/news/story/6809/4313108 將把 1 348
## 6193 https://udn.com/news/story/6809/4313108 專題 1 348
## 6194 https://udn.com/news/story/6809/4313108 常態 1 348
## 6195 https://udn.com/news/story/6809/4313108 情勢 1 348
## 6196 https://udn.com/news/story/6809/4313108 探討 1 348
## 6197 https://udn.com/news/story/6809/4313108 現代化 1 348
## 6198 https://udn.com/news/story/6809/4313108 現役 1 348
## 6199 https://udn.com/news/story/6809/4313108 第一 1 348
## 6200 https://udn.com/news/story/6809/4313108 處境 1 348
## 6201 https://udn.com/news/story/6809/4313108 責任 1 348
## 6202 https://udn.com/news/story/6809/4313108 提到 1 348
## 6203 https://udn.com/news/story/6809/4313108 發言 1 348
## 6204 https://udn.com/news/story/6809/4313108 發表 1 348
## 6205 https://udn.com/news/story/6809/4313108 發聲 1 348
## 6206 https://udn.com/news/story/6809/4313108 菲律賓 1 348
## 6207 https://udn.com/news/story/6809/4313108 貴賓 1 348
## 6208 https://udn.com/news/story/6809/4313108 開放 1 348
## 6209 https://udn.com/news/story/6809/4313108 傳遞 1 348
## 6210 https://udn.com/news/story/6809/4313108 意志 1 348
## 6211 https://udn.com/news/story/6809/4313108 感謝 1 348
## 6212 https://udn.com/news/story/6809/4313108 會議 1 348
## 6213 https://udn.com/news/story/6809/4313108 當下 1 348
## 6214 https://udn.com/news/story/6809/4313108 葡月號 1 348
## 6215 https://udn.com/news/story/6809/4313108 嘉許 1 348
## 6216 https://udn.com/news/story/6809/4313108 對話 1 348
## 6217 https://udn.com/news/story/6809/4313108 演講者 1 348
## 6218 https://udn.com/news/story/6809/4313108 維護 1 348
## 6219 https://udn.com/news/story/6809/4313108 與會 1 348
## 6220 https://udn.com/news/story/6809/4313108 蒞會 1 348
## 6221 https://udn.com/news/story/6809/4313108 認同 1 348
## 6222 https://udn.com/news/story/6809/4313108 遠海 1 348
## 6223 https://udn.com/news/story/6809/4313108 數位化 1 348
## 6224 https://udn.com/news/story/6809/4313108 模式 1 348
## 6225 https://udn.com/news/story/6809/4313108 歐洲各國 1 348
## 6226 https://udn.com/news/story/6809/4313108 歐盟 1 348
## 6227 https://udn.com/news/story/6809/4313108 熱烈 1 348
## 6228 https://udn.com/news/story/6809/4313108 複雜 1 348
## 6229 https://udn.com/news/story/6809/4313108 戰略 1 348
## 6230 https://udn.com/news/story/6809/4313108 戰略地位 1 348
## 6231 https://udn.com/news/story/6809/4313108 擔任 1 348
## 6232 https://udn.com/news/story/6809/4313108 整合 1 348
## 6233 https://udn.com/news/story/6809/4313108 優異 1 348
## 6234 https://udn.com/news/story/6809/4313108 爵士 1 348
## 6235 https://udn.com/news/story/6809/4313108 環境 1 348
## 6236 https://udn.com/news/story/6809/4313108 總部 1 348
## 6237 https://udn.com/news/story/6809/4313108 舉行 1 348
## 6238 https://udn.com/news/story/6809/4313108 艱困 1 348
## 6239 https://udn.com/news/story/6809/4313108 韓國 1 348
## 6240 https://udn.com/news/story/6809/4313108 擴張 1 348
## 6241 https://udn.com/news/story/6809/4313108 羅馬尼亞 1 348
## 6242 https://udn.com/news/story/6809/4313108 證明 1 348
## 6243 https://udn.com/news/story/6809/4313108 關切 1 348
## 6244 https://udn.com/news/story/6809/4313108 關鍵 1 348
## 6245 https://udn.com/news/story/6809/4313108 議程 1 348
## 6246 https://udn.com/news/story/6809/4313108 闡述 1 348
## 6247 https://udn.com/news/story/6809/4313108 讚賞 1 348
## 6248 https://udn.com/news/story/6809/4503516 一再 1 127
## 6249 https://udn.com/news/story/6809/4503516 一艘 1 127
## 6250 https://udn.com/news/story/6809/4503516 土耳其 1 127
## 6251 https://udn.com/news/story/6809/4503516 大陸 1 127
## 6252 https://udn.com/news/story/6809/4503516 中國外交部 1 127
## 6253 https://udn.com/news/story/6809/4503516 中國政府 1 127
## 6254 https://udn.com/news/story/6809/4503516 予以 1 127
## 6255 https://udn.com/news/story/6809/4503516 公司 1 127
## 6256 https://udn.com/news/story/6809/4503516 主權 1 127
## 6257 https://udn.com/news/story/6809/4503516 他國探 1 127
## 6258 https://udn.com/news/story/6809/4503516 北京 1 127
## 6259 https://udn.com/news/story/6809/4503516 台灣 1 127
## 6260 https://udn.com/news/story/6809/4503516 本週 1 127
## 6261 https://udn.com/news/story/6809/4503516 申請 1 127
## 6262 https://udn.com/news/story/6809/4503516 石油 1 127
## 6263 https://udn.com/news/story/6809/4503516 全球 1 127
## 6264 https://udn.com/news/story/6809/4503516 安全 1 127
## 6265 https://udn.com/news/story/6809/4503516 自我 1 127
## 6266 https://udn.com/news/story/6809/4503516 行業 1 127
## 6267 https://udn.com/news/story/6809/4503516 作業 1 127
## 6268 https://udn.com/news/story/6809/4503516 克制 1 127
## 6269 https://udn.com/news/story/6809/4503516 尾隨 1 127
## 6270 https://udn.com/news/story/6809/4503516 抗疫 1 127
## 6271 https://udn.com/news/story/6809/4503516 更新 1 127
## 6272 https://udn.com/news/story/6809/4503516 並對 1 127
## 6273 https://udn.com/news/story/6809/4503516 亞太地區 1 127
## 6274 https://udn.com/news/story/6809/4503516 例在 1 127
## 6275 https://udn.com/news/story/6809/4503516 呼籲 1 127
## 6276 https://udn.com/news/story/6809/4503516 官方 1 127
## 6277 https://udn.com/news/story/6809/4503516 官員 1 127
## 6278 https://udn.com/news/story/6809/4503516 抹黑 1 127
## 6279 https://udn.com/news/story/6809/4503516 油氣 1 127
## 6280 https://udn.com/news/story/6809/4503516 油船 1 127
## 6281 https://udn.com/news/story/6809/4503516 表達 1 127
## 6282 https://udn.com/news/story/6809/4503516 持續 1 127
## 6283 https://udn.com/news/story/6809/4503516 指控 1 127
## 6284 https://udn.com/news/story/6809/4503516 昨天 1 127
## 6285 https://udn.com/news/story/6809/4503516 活動 1 127
## 6286 https://udn.com/news/story/6809/4503516 疫情 1 127
## 6287 https://udn.com/news/story/6809/4503516 美方 1 127
## 6288 https://udn.com/news/story/6809/4503516 美國 1 127
## 6289 https://udn.com/news/story/6809/4503516 恐將 1 127
## 6290 https://udn.com/news/story/6809/4503516 消息 1 127
## 6291 https://udn.com/news/story/6809/4503516 消息人士 1 127
## 6292 https://udn.com/news/story/6809/4503516 病例 1 127
## 6293 https://udn.com/news/story/6809/4503516 破壞 1 127
## 6294 https://udn.com/news/story/6809/4503516 針對 1 127
## 6295 https://udn.com/news/story/6809/4503516 馬來西亞 1 127
## 6296 https://udn.com/news/story/6809/4503516 國家 1 127
## 6297 https://udn.com/news/story/6809/4503516 專題 1 127
## 6298 https://udn.com/news/story/6809/4503516 常規 1 127
## 6299 https://udn.com/news/story/6809/4503516 採取 1 127
## 6300 https://udn.com/news/story/6809/4503516 累積 1 127
## 6301 https://udn.com/news/story/6809/4503516 船是 1 127
## 6302 https://udn.com/news/story/6809/4503516 船隻 1 127
## 6303 https://udn.com/news/story/6809/4503516 這艘 1 127
## 6304 https://udn.com/news/story/6809/4503516 敦睦 1 127
## 6305 https://udn.com/news/story/6809/4503516 發布 1 127
## 6306 https://udn.com/news/story/6809/4503516 發言人 1 127
## 6307 https://udn.com/news/story/6809/4503516 稍早 1 127
## 6308 https://udn.com/news/story/6809/4503516 超過 1 127
## 6309 https://udn.com/news/story/6809/4503516 越南 1 127
## 6310 https://udn.com/news/story/6809/4503516 進行 1 127
## 6311 https://udn.com/news/story/6809/4503516 新冠肺炎 1 127
## 6312 https://udn.com/news/story/6809/4503516 新增 1 127
## 6313 https://udn.com/news/story/6809/4503516 當時 1 127
## 6314 https://udn.com/news/story/6809/4503516 萬人染疫 1 127
## 6315 https://udn.com/news/story/6809/4503516 號在 1 127
## 6316 https://udn.com/news/story/6809/4503516 補助 1 127
## 6317 https://udn.com/news/story/6809/4503516 路透社 1 127
## 6318 https://udn.com/news/story/6809/4503516 電子郵件 1 127
## 6319 https://udn.com/news/story/6809/4503516 對此 1 127
## 6320 https://udn.com/news/story/6809/4503516 整理 1 127
## 6321 https://udn.com/news/story/6809/4503516 聲索國 1 127
## 6322 https://udn.com/news/story/6809/4503516 還說 1 127
## 6323 https://udn.com/news/story/6809/4503516 鎖定 1 127
## 6324 https://udn.com/news/story/6809/4503516 穩定 1 127
## 6325 https://udn.com/news/story/6809/4503516 艦隊 1 127
## 6326 https://udn.com/news/story/6809/4503516 騷擾 1 127
## 6327 https://udn.com/news/story/6809/4504105 土耳其 1 102
## 6328 https://udn.com/news/story/6809/4504105 大陸 1 102
## 6329 https://udn.com/news/story/6809/4504105 不具 1 102
## 6330 https://udn.com/news/story/6809/4504105 中沙 1 102
## 6331 https://udn.com/news/story/6809/4504105 中國政府 1 102
## 6332 https://udn.com/news/story/6809/4504105 公告 1 102
## 6333 https://udn.com/news/story/6809/4504105 代管 1 102
## 6334 https://udn.com/news/story/6809/4504105 台灣 1 102
## 6335 https://udn.com/news/story/6809/4504105 外交部 1 102
## 6336 https://udn.com/news/story/6809/4504105 正當性 1 102
## 6337 https://udn.com/news/story/6809/4504105 民政局 1 102
## 6338 https://udn.com/news/story/6809/4504105 永暑礁 1 102
## 6339 https://udn.com/news/story/6809/4504105 永興島 1 102
## 6340 https://udn.com/news/story/6809/4504105 申請 1 102
## 6341 https://udn.com/news/story/6809/4504105 全球 1 102
## 6342 https://udn.com/news/story/6809/4504105 行政區 1 102
## 6343 https://udn.com/news/story/6809/4504105 行為 1 102
## 6344 https://udn.com/news/story/6809/4504105 行業 1 102
## 6345 https://udn.com/news/story/6809/4504105 批准 1 102
## 6346 https://udn.com/news/story/6809/4504105 抗疫 1 102
## 6347 https://udn.com/news/story/6809/4504105 抗議 1 102
## 6348 https://udn.com/news/story/6809/4504105 更新 1 102
## 6349 https://udn.com/news/story/6809/4504105 決定 1 102
## 6350 https://udn.com/news/story/6809/4504105 沙市 1 102
## 6351 https://udn.com/news/story/6809/4504105 例在 1 102
## 6352 https://udn.com/news/story/6809/4504105 爭議 1 102
## 6353 https://udn.com/news/story/6809/4504105 表示 1 102
## 6354 https://udn.com/news/story/6809/4504105 表達 1 102
## 6355 https://udn.com/news/story/6809/4504105 近日 1 102
## 6356 https://udn.com/news/story/6809/4504105 侵犯 1 102
## 6357 https://udn.com/news/story/6809/4504105 宣布 1 102
## 6358 https://udn.com/news/story/6809/4504105 持續 1 102
## 6359 https://udn.com/news/story/6809/4504105 指控 1 102
## 6360 https://udn.com/news/story/6809/4504105 疫情 1 102
## 6361 https://udn.com/news/story/6809/4504105 要求 1 102
## 6362 https://udn.com/news/story/6809/4504105 恐將 1 102
## 6363 https://udn.com/news/story/6809/4504105 海南省 1 102
## 6364 https://udn.com/news/story/6809/4504105 病例 1 102
## 6365 https://udn.com/news/story/6809/4504105 區和 1 102
## 6366 https://udn.com/news/story/6809/4504105 國務院 1 102
## 6367 https://udn.com/news/story/6809/4504105 專題 1 102
## 6368 https://udn.com/news/story/6809/4504105 累積 1 102
## 6369 https://udn.com/news/story/6809/4504105 報導 1 102
## 6370 https://udn.com/news/story/6809/4504105 尊重 1 102
## 6371 https://udn.com/news/story/6809/4504105 敦睦 1 102
## 6372 https://udn.com/news/story/6809/4504105 發布 1 102
## 6373 https://udn.com/news/story/6809/4504105 發言人 1 102
## 6374 https://udn.com/news/story/6809/4504105 超過 1 102
## 6375 https://udn.com/news/story/6809/4504105 越南政府 1 102
## 6376 https://udn.com/news/story/6809/4504105 新冠肺炎 1 102
## 6377 https://udn.com/news/story/6809/4504105 新增 1 102
## 6378 https://udn.com/news/story/6809/4504105 萬人染疫 1 102
## 6379 https://udn.com/news/story/6809/4504105 補助 1 102
## 6380 https://udn.com/news/story/6809/4504105 對此 1 102
## 6381 https://udn.com/news/story/6809/4504105 廢止 1 102
## 6382 https://udn.com/news/story/6809/4504105 黎氏秋恆 1 102
## 6383 https://udn.com/news/story/6809/4504105 整理 1 102
## 6384 https://udn.com/news/story/6809/4504105 聲明 1 102
## 6385 https://udn.com/news/story/6809/4504105 嚴重 1 102
## 6386 https://udn.com/news/story/6809/4504105 艦隊 1 102
## 6387 https://udn.com/news/story/6809/4551117 中共 1 178
## 6388 https://udn.com/news/story/6809/4551117 中國 1 178
## 6389 https://udn.com/news/story/6809/4551117 中國共產黨 1 178
## 6390 https://udn.com/news/story/6809/4551117 公司 1 178
## 6391 https://udn.com/news/story/6809/4551117 天無 1 178
## 6392 https://udn.com/news/story/6809/4551117 天然氣 1 178
## 6393 https://udn.com/news/story/6809/4551117 少將 1 178
## 6394 https://udn.com/news/story/6809/4551117 支持 1 178
## 6395 https://udn.com/news/story/6809/4551117 代表 1 178
## 6396 https://udn.com/news/story/6809/4551117 北京 1 178
## 6397 https://udn.com/news/story/6809/4551117 台灣 1 178
## 6398 https://udn.com/news/story/6809/4551117 打擊 1 178
## 6399 https://udn.com/news/story/6809/4551117 本土 1 178
## 6400 https://udn.com/news/story/6809/4551117 目的 1 178
## 6401 https://udn.com/news/story/6809/4551117 全球 1 178
## 6402 https://udn.com/news/story/6809/4551117 安全 1 178
## 6403 https://udn.com/news/story/6809/4551117 死亡 1 178
## 6404 https://udn.com/news/story/6809/4551117 行事 1 178
## 6405 https://udn.com/news/story/6809/4551117 行動 1 178
## 6406 https://udn.com/news/story/6809/4551117 行經 1 178
## 6407 https://udn.com/news/story/6809/4551117 並向 1 178
## 6408 https://udn.com/news/story/6809/4551117 使用 1 178
## 6409 https://udn.com/news/story/6809/4551117 依賴 1 178
## 6410 https://udn.com/news/story/6809/4551117 兩艘 1 178
## 6411 https://udn.com/news/story/6809/4551117 具有 1 178
## 6412 https://udn.com/news/story/6809/4551117 受益 1 178
## 6413 https://udn.com/news/story/6809/4551117 奉行 1 178
## 6414 https://udn.com/news/story/6809/4551117 所有 1 178
## 6415 https://udn.com/news/story/6809/4551117 承諾 1 178
## 6416 https://udn.com/news/story/6809/4551117 直逼 1 178
## 6417 https://udn.com/news/story/6809/4551117 表示 1 178
## 6418 https://udn.com/news/story/6809/4551117 表明 1 178
## 6419 https://udn.com/news/story/6809/4551117 近幾個月 1 178
## 6420 https://udn.com/news/story/6809/4551117 附近 1 178
## 6421 https://udn.com/news/story/6809/4551117 後勤 1 178
## 6422 https://udn.com/news/story/6809/4551117 持續 1 178
## 6423 https://udn.com/news/story/6809/4551117 指出 1 178
## 6424 https://udn.com/news/story/6809/4551117 昨天 1 178
## 6425 https://udn.com/news/story/6809/4551117 疫情 1 178
## 6426 https://udn.com/news/story/6809/4551117 致力 1 178
## 6427 https://udn.com/news/story/6809/4551117 軍艦 1 178
## 6428 https://udn.com/news/story/6809/4551117 個案 1 178
## 6429 https://udn.com/news/story/6809/4551117 原則 1 178
## 6430 https://udn.com/news/story/6809/4551117 展現 1 178
## 6431 https://udn.com/news/story/6809/4551117 海洋 1 178
## 6432 https://udn.com/news/story/6809/4551117 海域 1 178
## 6433 https://udn.com/news/story/6809/4551117 海警 1 178
## 6434 https://udn.com/news/story/6809/4551117 秩序 1 178
## 6435 https://udn.com/news/story/6809/4551117 航海 1 178
## 6436 https://udn.com/news/story/6809/4551117 馬來西亞 1 178
## 6437 https://udn.com/news/story/6809/4551117 國際水域 1 178
## 6438 https://udn.com/news/story/6809/4551117 國際法 1 178
## 6439 https://udn.com/news/story/6809/4551117 專題 1 178
## 6440 https://udn.com/news/story/6809/4551117 敏捷 1 178
## 6441 https://udn.com/news/story/6809/4551117 符合 1 178
## 6442 https://udn.com/news/story/6809/4551117 規範 1 178
## 6443 https://udn.com/news/story/6809/4551117 透明 1 178
## 6444 https://udn.com/news/story/6809/4551117 連續 1 178
## 6445 https://udn.com/news/story/6809/4551117 部隊 1 178
## 6446 https://udn.com/news/story/6809/4551117 喊話 1 178
## 6447 https://udn.com/news/story/6809/4551117 報導 1 178
## 6448 https://udn.com/news/story/6809/4551117 發布 1 178
## 6449 https://udn.com/news/story/6809/4551117 進行 1 178
## 6450 https://udn.com/news/story/6809/4551117 慎重 1 178
## 6451 https://udn.com/news/story/6809/4551117 新冠肺炎 1 178
## 6452 https://udn.com/news/story/6809/4551117 新增 1 178
## 6453 https://udn.com/news/story/6809/4551117 經營 1 178
## 6454 https://udn.com/news/story/6809/4551117 萬人 1 178
## 6455 https://udn.com/news/story/6809/4551117 萬例 1 178
## 6456 https://udn.com/news/story/6809/4551117 號與 1 178
## 6457 https://udn.com/news/story/6809/4551117 補給艦 1 178
## 6458 https://udn.com/news/story/6809/4551117 資源 1 178
## 6459 https://udn.com/news/story/6809/4551117 嘉玲 1 178
## 6460 https://udn.com/news/story/6809/4551117 實力 1 178
## 6461 https://udn.com/news/story/6809/4551117 漁船 1 178
## 6462 https://udn.com/news/story/6809/4551117 漁業 1 178
## 6463 https://udn.com/news/story/6809/4551117 精神 1 178
## 6464 https://udn.com/news/story/6809/4551117 維生 1 178
## 6465 https://udn.com/news/story/6809/4551117 遠征 1 178
## 6466 https://udn.com/news/story/6809/4551117 廣泛 1 178
## 6467 https://udn.com/news/story/6809/4551117 彈藥 1 178
## 6468 https://udn.com/news/story/6809/4551117 數百萬 1 178
## 6469 https://udn.com/news/story/6809/4551117 模式 1 178
## 6470 https://udn.com/news/story/6809/4551117 確診 1 178
## 6471 https://udn.com/news/story/6809/4551117 調查 1 178
## 6472 https://udn.com/news/story/6809/4551117 遭受 1 178
## 6473 https://udn.com/news/story/6809/4551117 戰鬥艦 1 178
## 6474 https://udn.com/news/story/6809/4551117 擁有 1 178
## 6475 https://udn.com/news/story/6809/4551117 諾說 1 178
## 6476 https://udn.com/news/story/6809/4551117 濱海 1 178
## 6477 https://udn.com/news/story/6809/4551117 繁榮 1 178
## 6478 https://udn.com/news/story/6809/4551117 離岸 1 178
## 6479 https://udn.com/news/story/6809/4551117 證實 1 178
## 6480 https://udn.com/news/story/6809/4551117 關鍵 1 178
## 6481 https://udn.com/news/story/6809/4551117 騷擾 1 178
## 6482 https://udn.com/news/story/6809/4551117 靈活 1 178
## 6483 https://udn.com/news/story/6809/4565919 一向 1 372
## 6484 https://udn.com/news/story/6809/4565919 一項 1 372
## 6485 https://udn.com/news/story/6809/4565919 人以 1 372
## 6486 https://udn.com/news/story/6809/4565919 人到 1 372
## 6487 https://udn.com/news/story/6809/4565919 人造 1 372
## 6488 https://udn.com/news/story/6809/4565919 力量 1 372
## 6489 https://udn.com/news/story/6809/4565919 力道 1 372
## 6490 https://udn.com/news/story/6809/4565919 上個月 1 372
## 6491 https://udn.com/news/story/6809/4565919 上週 1 372
## 6492 https://udn.com/news/story/6809/4565919 才剛 1 372
## 6493 https://udn.com/news/story/6809/4565919 中向 1 372
## 6494 https://udn.com/news/story/6809/4565919 中有 1 372
## 6495 https://udn.com/news/story/6809/4565919 中國共產黨 1 372
## 6496 https://udn.com/news/story/6809/4565919 今日 1 372
## 6497 https://udn.com/news/story/6809/4565919 公開 1 372
## 6498 https://udn.com/news/story/6809/4565919 分別 1 372
## 6499 https://udn.com/news/story/6809/4565919 手段 1 372
## 6500 https://udn.com/news/story/6809/4565919 支持 1 372
## 6501 https://udn.com/news/story/6809/4565919 方式 1 372
## 6502 https://udn.com/news/story/6809/4565919 月底 1 372
## 6503 https://udn.com/news/story/6809/4565919 水域 1 372
## 6504 https://udn.com/news/story/6809/4565919 水道 1 372
## 6505 https://udn.com/news/story/6809/4565919 主權 1 372
## 6506 https://udn.com/news/story/6809/4565919 以來 1 372
## 6507 https://udn.com/news/story/6809/4565919 加大 1 372
## 6508 https://udn.com/news/story/6809/4565919 加強 1 372
## 6509 https://udn.com/news/story/6809/4565919 北京政府 1 372
## 6510 https://udn.com/news/story/6809/4565919 司令部 1 372
## 6511 https://udn.com/news/story/6809/4565919 外交 1 372
## 6512 https://udn.com/news/story/6809/4565919 必須 1 372
## 6513 https://udn.com/news/story/6809/4565919 正在 1 372
## 6514 https://udn.com/news/story/6809/4565919 目的 1 372
## 6515 https://udn.com/news/story/6809/4565919 交會處 1 372
## 6516 https://udn.com/news/story/6809/4565919 任務 1 372
## 6517 https://udn.com/news/story/6809/4565919 伊斯特 1 372
## 6518 https://udn.com/news/story/6809/4565919 先前 1 372
## 6519 https://udn.com/news/story/6809/4565919 向來 1 372
## 6520 https://udn.com/news/story/6809/4565919 地方 1 372
## 6521 https://udn.com/news/story/6809/4565919 多人染疫 1 372
## 6522 https://udn.com/news/story/6809/4565919 安全 1 372
## 6523 https://udn.com/news/story/6809/4565919 安裝 1 372
## 6524 https://udn.com/news/story/6809/4565919 有意 1 372
## 6525 https://udn.com/news/story/6809/4565919 自然資源 1 372
## 6526 https://udn.com/news/story/6809/4565919 艾斯培 1 372
## 6527 https://udn.com/news/story/6809/4565919 西沙 1 372
## 6528 https://udn.com/news/story/6809/4565919 似乎 1 372
## 6529 https://udn.com/news/story/6809/4565919 位於 1 372
## 6530 https://udn.com/news/story/6809/4565919 位置 1 372
## 6531 https://udn.com/news/story/6809/4565919 作戰 1 372
## 6532 https://udn.com/news/story/6809/4565919 利益 1 372
## 6533 https://udn.com/news/story/6809/4565919 坎貝爾 1 372
## 6534 https://udn.com/news/story/6809/4565919 坐大視 1 372
## 6535 https://udn.com/news/story/6809/4565919 投機 1 372
## 6536 https://udn.com/news/story/6809/4565919 抗疫 1 372
## 6537 https://udn.com/news/story/6809/4565919 更長 1 372
## 6538 https://udn.com/news/story/6809/4565919 更遠 1 372
## 6539 https://udn.com/news/story/6809/4565919 沒人 1 372
## 6540 https://udn.com/news/story/6809/4565919 沒能 1 372
## 6541 https://udn.com/news/story/6809/4565919 私利 1 372
## 6542 https://udn.com/news/story/6809/4565919 罕見 1 372
## 6543 https://udn.com/news/story/6809/4565919 防範 1 372
## 6544 https://udn.com/news/story/6809/4565919 例行 1 372
## 6545 https://udn.com/news/story/6809/4565919 初期 1 372
## 6546 https://udn.com/news/story/6809/4565919 周圍 1 372
## 6547 https://udn.com/news/story/6809/4565919 官員 1 372
## 6548 https://udn.com/news/story/6809/4565919 所有 1 372
## 6549 https://udn.com/news/story/6809/4565919 抨擊 1 372
## 6550 https://udn.com/news/story/6809/4565919 放心 1 372
## 6551 https://udn.com/news/story/6809/4565919 東南亞 1 372
## 6552 https://udn.com/news/story/6809/4565919 武器 1 372
## 6553 https://udn.com/news/story/6809/4565919 武斷 1 372
## 6554 https://udn.com/news/story/6809/4565919 爭議 1 372
## 6555 https://udn.com/news/story/6809/4565919 空軍基地 1 372
## 6556 https://udn.com/news/story/6809/4565919 近幾週 1 372
## 6557 https://udn.com/news/story/6809/4565919 近期 1 372
## 6558 https://udn.com/news/story/6809/4565919 阻止 1 372
## 6559 https://udn.com/news/story/6809/4565919 阿基里 1 372
## 6560 https://udn.com/news/story/6809/4565919 非法 1 372
## 6561 https://udn.com/news/story/6809/4565919 促進 1 372
## 6562 https://udn.com/news/story/6809/4565919 前哨 1 372
## 6563 https://udn.com/news/story/6809/4565919 南沙 1 372
## 6564 https://udn.com/news/story/6809/4565919 宣布 1 372
## 6565 https://udn.com/news/story/6809/4565919 建立 1 372
## 6566 https://udn.com/news/story/6809/4565919 恢復 1 372
## 6567 https://udn.com/news/story/6809/4565919 指揮官 1 372
## 6568 https://udn.com/news/story/6809/4565919 挑戰 1 372
## 6569 https://udn.com/news/story/6809/4565919 派駐 1 372
## 6570 https://udn.com/news/story/6809/4565919 流行 1 372
## 6571 https://udn.com/news/story/6809/4565919 美國有線電視新聞網 1 372
## 6572 https://udn.com/news/story/6809/4565919 美國國防部 1 372
## 6573 https://udn.com/news/story/6809/4565919 背景 1 372
## 6574 https://udn.com/news/story/6809/4565919 要務 1 372
## 6575 https://udn.com/news/story/6809/4565919 計畫 1 372
## 6576 https://udn.com/news/story/6809/4565919 軍方 1 372
## 6577 https://udn.com/news/story/6809/4565919 重災區 1 372
## 6578 https://udn.com/news/story/6809/4565919 面對 1 372
## 6579 https://udn.com/news/story/6809/4565919 飛行 1 372
## 6580 https://udn.com/news/story/6809/4565919 飛到 1 372
## 6581 https://udn.com/news/story/6809/4565919 飛彈 1 372
## 6582 https://udn.com/news/story/6809/4565919 首度 1 372
## 6583 https://udn.com/news/story/6809/4565919 展現 1 372
## 6584 https://udn.com/news/story/6809/4565919 島上 1 372
## 6585 https://udn.com/news/story/6809/4565919 島嶼 1 372
## 6586 https://udn.com/news/story/6809/4565919 時間 1 372
## 6587 https://udn.com/news/story/6809/4565919 海域 1 372
## 6588 https://udn.com/news/story/6809/4565919 海運 1 372
## 6589 https://udn.com/news/story/6809/4565919 疾病 1 372
## 6590 https://udn.com/news/story/6809/4565919 能力 1 372
## 6591 https://udn.com/news/story/6809/4565919 脅迫 1 372
## 6592 https://udn.com/news/story/6809/4565919 航線 1 372
## 6593 https://udn.com/news/story/6809/4565919 馬來西亞 1 372
## 6594 https://udn.com/news/story/6809/4565919 停止 1 372
## 6595 https://udn.com/news/story/6809/4565919 唯一 1 372
## 6596 https://udn.com/news/story/6809/4565919 國防部長 1 372
## 6597 https://udn.com/news/story/6809/4565919 國務卿 1 372
## 6598 https://udn.com/news/story/6809/4565919 國際法 1 372
## 6599 https://udn.com/news/story/6809/4565919 執勤 1 372
## 6600 https://udn.com/news/story/6809/4565919 專業 1 372
## 6601 https://udn.com/news/story/6809/4565919 情勢 1 372
## 6602 https://udn.com/news/story/6809/4565919 控制 1 372
## 6603 https://udn.com/news/story/6809/4565919 終止 1 372
## 6604 https://udn.com/news/story/6809/4565919 被視 1 372
## 6605 https://udn.com/news/story/6809/4565919 許可 1 372
## 6606 https://udn.com/news/story/6809/4565919 逐漸 1 372
## 6607 https://udn.com/news/story/6809/4565919 這片 1 372
## 6608 https://udn.com/news/story/6809/4565919 部署 1 372
## 6609 https://udn.com/news/story/6809/4565919 麥克 1 372
## 6610 https://udn.com/news/story/6809/4565919 幾條 1 372
## 6611 https://udn.com/news/story/6809/4565919 提出 1 372
## 6612 https://udn.com/news/story/6809/4565919 提到 1 372
## 6613 https://udn.com/news/story/6809/4565919 普及 1 372
## 6614 https://udn.com/news/story/6809/4565919 最後 1 372
## 6615 https://udn.com/news/story/6809/4565919 菲律賓 1 372
## 6616 https://udn.com/news/story/6809/4565919 越南 1 372
## 6617 https://udn.com/news/story/6809/4565919 越線 1 372
## 6618 https://udn.com/news/story/6809/4565919 距離 1 372
## 6619 https://udn.com/news/story/6809/4565919 進一步 1 372
## 6620 https://udn.com/news/story/6809/4565919 進入 1 372
## 6621 https://udn.com/news/story/6809/4565919 開放 1 372
## 6622 https://udn.com/news/story/6809/4565919 愈來愈 1 372
## 6623 https://udn.com/news/story/6809/4565919 新冠肺炎 1 372
## 6624 https://udn.com/news/story/6809/4565919 新型 1 372
## 6625 https://udn.com/news/story/6809/4565919 暗示 1 372
## 6626 https://udn.com/news/story/6809/4565919 當務之急 1 372
## 6627 https://udn.com/news/story/6809/4565919 盟國 1 372
## 6628 https://udn.com/news/story/6809/4565919 經濟 1 372
## 6629 https://udn.com/news/story/6809/4565919 資訊 1 372
## 6630 https://udn.com/news/story/6809/4565919 資源 1 372
## 6631 https://udn.com/news/story/6809/4565919 過去 1 372
## 6632 https://udn.com/news/story/6809/4565919 圖表 1 372
## 6633 https://udn.com/news/story/6809/4565919 實施 1 372
## 6634 https://udn.com/news/story/6809/4565919 漁業 1 372
## 6635 https://udn.com/news/story/6809/4565919 維生 1 372
## 6636 https://udn.com/news/story/6809/4565919 維持 1 372
## 6637 https://udn.com/news/story/6809/4565919 緊張 1 372
## 6638 https://udn.com/news/story/6809/4565919 認為 1 372
## 6639 https://udn.com/news/story/6809/4565919 領域 1 372
## 6640 https://udn.com/news/story/6809/4565919 德州 1 372
## 6641 https://udn.com/news/story/6809/4565919 數次 1 372
## 6642 https://udn.com/news/story/6809/4565919 數百萬 1 372
## 6643 https://udn.com/news/story/6809/4565919 數最多 1 372
## 6644 https://udn.com/news/story/6809/4565919 數週 1 372
## 6645 https://udn.com/news/story/6809/4565919 數據 1 372
## 6646 https://udn.com/news/story/6809/4565919 數艘 1 372
## 6647 https://udn.com/news/story/6809/4565919 模式 1 372
## 6648 https://udn.com/news/story/6809/4565919 潛在 1 372
## 6649 https://udn.com/news/story/6809/4565919 潛艦 1 372
## 6650 https://udn.com/news/story/6809/4565919 確診 1 372
## 6651 https://udn.com/news/story/6809/4565919 範圍 1 372
## 6652 https://udn.com/news/story/6809/4565919 蓬佩奧 1 372
## 6653 https://udn.com/news/story/6809/4565919 衝突 1 372
## 6654 https://udn.com/news/story/6809/4565919 質疑 1 372
## 6655 https://udn.com/news/story/6809/4565919 導彈 1 372
## 6656 https://udn.com/news/story/6809/4565919 戰艦 1 372
## 6657 https://udn.com/news/story/6809/4565919 頻繁 1 372
## 6658 https://udn.com/news/story/6809/4565919 優先 1 372
## 6659 https://udn.com/news/story/6809/4565919 儲藏 1 372
## 6660 https://udn.com/news/story/6809/4565919 總統 1 372
## 6661 https://udn.com/news/story/6809/4565919 繁忙 1 372
## 6662 https://udn.com/news/story/6809/4565919 聲索方 1 372
## 6663 https://udn.com/news/story/6809/4565919 趨於 1 372
## 6664 https://udn.com/news/story/6809/4565919 隱匿 1 372
## 6665 https://udn.com/news/story/6809/4565919 黛斯 1 372
## 6666 https://udn.com/news/story/6809/4565919 擴散 1 372
## 6667 https://udn.com/news/story/6809/4565919 羅斯福 1 372
## 6668 https://udn.com/news/story/6809/4565919 關切 1 372
## 6669 https://udn.com/news/story/6809/4565919 關鍵 1 372
## 6670 https://udn.com/news/story/6809/4565919 繼續 1 372
## 6671 https://udn.com/news/story/6809/4565919 艦艇 1 372
## 6672 https://udn.com/news/story/6809/4565919 蘊藏 1 372
## 6673 https://udn.com/news/story/6809/4565919 霸凌 1 372
## 6674 https://udn.com/news/story/6809/4565919 驅逐艦 1 372
## 6675 https://udn.com/news/story/6809/4565919 攫取 1 372
## 6676 https://udn.com/news/story/6809/4651251 一同 1 205
## 6677 https://udn.com/news/story/6809/4651251 一步 1 205
## 6678 https://udn.com/news/story/6809/4651251 入口 1 205
## 6679 https://udn.com/news/story/6809/4651251 力量 1 205
## 6680 https://udn.com/news/story/6809/4651251 大陸 1 205
## 6681 https://udn.com/news/story/6809/4651251 中國 1 205
## 6682 https://udn.com/news/story/6809/4651251 之間 1 205
## 6683 https://udn.com/news/story/6809/4651251 之際 1 205
## 6684 https://udn.com/news/story/6809/4651251 仍將 1 205
## 6685 https://udn.com/news/story/6809/4651251 世界 1 205
## 6686 https://udn.com/news/story/6809/4651251 北京 1 205
## 6687 https://udn.com/news/story/6809/4651251 去處 1 205
## 6688 https://udn.com/news/story/6809/4651251 可能 1 205
## 6689 https://udn.com/news/story/6809/4651251 台灣 1 205
## 6690 https://udn.com/news/story/6809/4651251 司令 1 205
## 6691 https://udn.com/news/story/6809/4651251 用途 1 205
## 6692 https://udn.com/news/story/6809/4651251 共同 1 205
## 6693 https://udn.com/news/story/6809/4651251 各國 1 205
## 6694 https://udn.com/news/story/6809/4651251 合法 1 205
## 6695 https://udn.com/news/story/6809/4651251 多支 1 205
## 6696 https://udn.com/news/story/6809/4651251 多項 1 205
## 6697 https://udn.com/news/story/6809/4651251 安全 1 205
## 6698 https://udn.com/news/story/6809/4651251 年來 1 205
## 6699 https://udn.com/news/story/6809/4651251 早前 1 205
## 6700 https://udn.com/news/story/6809/4651251 百事可樂 1 205
## 6701 https://udn.com/news/story/6809/4651251 自由 1 205
## 6702 https://udn.com/news/story/6809/4651251 至關重要 1 205
## 6703 https://udn.com/news/story/6809/4651251 西太平洋 1 205
## 6704 https://udn.com/news/story/6809/4651251 位處 1 205
## 6705 https://udn.com/news/story/6809/4651251 作戰 1 205
## 6706 https://udn.com/news/story/6809/4651251 呂宋 1 205
## 6707 https://udn.com/news/story/6809/4651251 告訴 1 205
## 6708 https://udn.com/news/story/6809/4651251 局面 1 205
## 6709 https://udn.com/news/story/6809/4651251 局勢 1 205
## 6710 https://udn.com/news/story/6809/4651251 巡航 1 205
## 6711 https://udn.com/news/story/6809/4651251 技巧 1 205
## 6712 https://udn.com/news/story/6809/4651251 防空 1 205
## 6713 https://udn.com/news/story/6809/4651251 防禦性 1 205
## 6714 https://udn.com/news/story/6809/4651251 來說 1 205
## 6715 https://udn.com/news/story/6809/4651251 兩艘 1 205
## 6716 https://udn.com/news/story/6809/4651251 協同 1 205
## 6717 https://udn.com/news/story/6809/4651251 協同作戰 1 205
## 6718 https://udn.com/news/story/6809/4651251 知道 1 205
## 6719 https://udn.com/news/story/6809/4651251 空戰 1 205
## 6720 https://udn.com/news/story/6809/4651251 表示 1 205
## 6721 https://udn.com/news/story/6809/4651251 近距離 1 205
## 6722 https://udn.com/news/story/6809/4651251 長久以來 1 205
## 6723 https://udn.com/news/story/6809/4651251 門戶 1 205
## 6724 https://udn.com/news/story/6809/4651251 疫情 1 205
## 6725 https://udn.com/news/story/6809/4651251 美方 1 205
## 6726 https://udn.com/news/story/6809/4651251 致力於 1 205
## 6727 https://udn.com/news/story/6809/4651251 軍力 1 205
## 6728 https://udn.com/news/story/6809/4651251 韋瑞西 1 205
## 6729 https://udn.com/news/story/6809/4651251 飛機 1 205
## 6730 https://udn.com/news/story/6809/4651251 首次 1 205
## 6731 https://udn.com/news/story/6809/4651251 捍衛 1 205
## 6732 https://udn.com/news/story/6809/4651251 時報 1 205
## 6733 https://udn.com/news/story/6809/4651251 海洋 1 205
## 6734 https://udn.com/news/story/6809/4651251 海峽 1 205
## 6735 https://udn.com/news/story/6809/4651251 能耐 1 205
## 6736 https://udn.com/news/story/6809/4651251 航艦位 1 205
## 6737 https://udn.com/news/story/6809/4651251 訓練 1 205
## 6738 https://udn.com/news/story/6809/4651251 追查 1 205
## 6739 https://udn.com/news/story/6809/4651251 停產 1 205
## 6740 https://udn.com/news/story/6809/4651251 停業 1 205
## 6741 https://udn.com/news/story/6809/4651251 偵察 1 205
## 6742 https://udn.com/news/story/6809/4651251 國際水域 1 205
## 6743 https://udn.com/news/story/6809/4651251 基地 1 205
## 6744 https://udn.com/news/story/6809/4651251 強大 1 205
## 6745 https://udn.com/news/story/6809/4651251 強而有力 1 205
## 6746 https://udn.com/news/story/6809/4651251 接觸 1 205
## 6747 https://udn.com/news/story/6809/4651251 清楚 1 205
## 6748 https://udn.com/news/story/6809/4651251 第九 1 205
## 6749 https://udn.com/news/story/6809/4651251 第十一 1 205
## 6750 https://udn.com/news/story/6809/4651251 這是 1 205
## 6751 https://udn.com/news/story/6809/4651251 造福 1 205
## 6752 https://udn.com/news/story/6809/4651251 部發 1 205
## 6753 https://udn.com/news/story/6809/4651251 部署 1 205
## 6754 https://udn.com/news/story/6809/4651251 報導 1 205
## 6755 https://udn.com/news/story/6809/4651251 提升 1 205
## 6756 https://udn.com/news/story/6809/4651251 發布 1 205
## 6757 https://udn.com/news/story/6809/4651251 結合 1 205
## 6758 https://udn.com/news/story/6809/4651251 菲律賓 1 205
## 6759 https://udn.com/news/story/6809/4651251 進入 1 205
## 6760 https://udn.com/news/story/6809/4651251 進行 1 205
## 6761 https://udn.com/news/story/6809/4651251 韌性 1 205
## 6762 https://udn.com/news/story/6809/4651251 傳達 1 205
## 6763 https://udn.com/news/story/6809/4651251 意在 1 205
## 6764 https://udn.com/news/story/6809/4651251 照片 1 205
## 6765 https://udn.com/news/story/6809/4651251 群將 1 205
## 6766 https://udn.com/news/story/6809/4651251 號航艦 1 205
## 6767 https://udn.com/news/story/6809/4651251 補給 1 205
## 6768 https://udn.com/news/story/6809/4651251 運作 1 205
## 6769 https://udn.com/news/story/6809/4651251 雷根 1 205
## 6770 https://udn.com/news/story/6809/4651251 圖表 1 205
## 6771 https://udn.com/news/story/6809/4651251 維持 1 205
## 6772 https://udn.com/news/story/6809/4651251 維護 1 205
## 6773 https://udn.com/news/story/6809/4651251 遠程 1 205
## 6774 https://udn.com/news/story/6809/4651251 數據 1 205
## 6775 https://udn.com/news/story/6809/4651251 確診 1 205
## 6776 https://udn.com/news/story/6809/4651251 複雜 1 205
## 6777 https://udn.com/news/story/6809/4651251 駛離 1 205
## 6778 https://udn.com/news/story/6809/4651251 機會 1 205
## 6779 https://udn.com/news/story/6809/4651251 橫須賀 1 205
## 6780 https://udn.com/news/story/6809/4651251 獨到 1 205
## 6781 https://udn.com/news/story/6809/4651251 環境 1 205
## 6782 https://udn.com/news/story/6809/4651251 聯合 1 205
## 6783 https://udn.com/news/story/6809/4651251 趨緊 1 205
## 6784 https://udn.com/news/story/6809/4651251 穩定 1 205
## 6785 https://udn.com/news/story/6809/4651251 艦艇 1 205
## 6786 https://udn.com/news/story/6809/4651251 權利 1 205
## 6787 https://udn.com/news/story/6809/4678024 一次 1 184
## 6788 https://udn.com/news/story/6809/4678024 一連 1 184
## 6789 https://udn.com/news/story/6809/4678024 千萬 1 184
## 6790 https://udn.com/news/story/6809/4678024 大陸 1 184
## 6791 https://udn.com/news/story/6809/4678024 不斷 1 184
## 6792 https://udn.com/news/story/6809/4678024 五日 1 184
## 6793 https://udn.com/news/story/6809/4678024 升高 1 184
## 6794 https://udn.com/news/story/6809/4678024 升溫 1 184
## 6795 https://udn.com/news/story/6809/4678024 反應 1 184
## 6796 https://udn.com/news/story/6809/4678024 太平洋地區 1 184
## 6797 https://udn.com/news/story/6809/4678024 少將 1 184
## 6798 https://udn.com/news/story/6809/4678024 方式 1 184
## 6799 https://udn.com/news/story/6809/4678024 日起 1 184
## 6800 https://udn.com/news/story/6809/4678024 出現 1 184
## 6801 https://udn.com/news/story/6809/4678024 加劇 1 184
## 6802 https://udn.com/news/story/6809/4678024 包括 1 184
## 6803 https://udn.com/news/story/6809/4678024 北京政府 1 184
## 6804 https://udn.com/news/story/6809/4678024 四艘 1 184
## 6805 https://udn.com/news/story/6809/4678024 尼米茲 1 184
## 6806 https://udn.com/news/story/6809/4678024 打擊 1 184
## 6807 https://udn.com/news/story/6809/4678024 正在 1 184
## 6808 https://udn.com/news/story/6809/4678024 目的 1 184
## 6809 https://udn.com/news/story/6809/4678024 先進 1 184
## 6810 https://udn.com/news/story/6809/4678024 全天候 1 184
## 6811 https://udn.com/news/story/6809/4678024 全球 1 184
## 6812 https://udn.com/news/story/6809/4678024 回應 1 184
## 6813 https://udn.com/news/story/6809/4678024 地點 1 184
## 6814 https://udn.com/news/story/6809/4678024 存在 1 184
## 6815 https://udn.com/news/story/6809/4678024 此次 1 184
## 6816 https://udn.com/news/story/6809/4678024 此種 1 184
## 6817 https://udn.com/news/story/6809/4678024 行動 1 184
## 6818 https://udn.com/news/story/6809/4678024 西沙 1 184
## 6819 https://udn.com/news/story/6809/4678024 作戰 1 184
## 6820 https://udn.com/news/story/6809/4678024 並稱 1 184
## 6821 https://udn.com/news/story/6809/4678024 事件 1 184
## 6822 https://udn.com/news/story/6809/4678024 受到 1 184
## 6823 https://udn.com/news/story/6809/4678024 官員 1 184
## 6824 https://udn.com/news/story/6809/4678024 拒絕 1 184
## 6825 https://udn.com/news/story/6809/4678024 明確 1 184
## 6826 https://udn.com/news/story/6809/4678024 爭端 1 184
## 6827 https://udn.com/news/story/6809/4678024 近年來 1 184
## 6828 https://udn.com/news/story/6809/4678024 促進 1 184
## 6829 https://udn.com/news/story/6809/4678024 很少 1 184
## 6830 https://udn.com/news/story/6809/4678024 政治 1 184
## 6831 https://udn.com/news/story/6809/4678024 派出 1 184
## 6832 https://udn.com/news/story/6809/4678024 美方 1 184
## 6833 https://udn.com/news/story/6809/4678024 美軍 1 184
## 6834 https://udn.com/news/story/6809/4678024 致力於 1 184
## 6835 https://udn.com/news/story/6809/4678024 飛行 1 184
## 6836 https://udn.com/news/story/6809/4678024 香港 1 184
## 6837 https://udn.com/news/story/6809/4678024 值得注意 1 184
## 6838 https://udn.com/news/story/6809/4678024 海事 1 184
## 6839 https://udn.com/news/story/6809/4678024 航空母艦 1 184
## 6840 https://udn.com/news/story/6809/4678024 訊息 1 184
## 6841 https://udn.com/news/story/6809/4678024 訓練 1 184
## 6842 https://udn.com/news/story/6809/4678024 針對 1 184
## 6843 https://udn.com/news/story/6809/4678024 區域 1 184
## 6844 https://udn.com/news/story/6809/4678024 國際 1 184
## 6845 https://udn.com/news/story/6809/4678024 國慶日 1 184
## 6846 https://udn.com/news/story/6809/4678024 異議人士 1 184
## 6847 https://udn.com/news/story/6809/4678024 眾多 1 184
## 6848 https://udn.com/news/story/6809/4678024 第七 1 184
## 6849 https://udn.com/news/story/6809/4678024 透露 1 184
## 6850 https://udn.com/news/story/6809/4678024 凱利 1 184
## 6851 https://udn.com/news/story/6809/4678024 幾艘 1 184
## 6852 https://udn.com/news/story/6809/4678024 最大 1 184
## 6853 https://udn.com/news/story/6809/4678024 最新 1 184
## 6854 https://udn.com/news/story/6809/4678024 測試 1 184
## 6855 https://udn.com/news/story/6809/4678024 發言人 1 184
## 6856 https://udn.com/news/story/6809/4678024 結束 1 184
## 6857 https://udn.com/news/story/6809/4678024 華爾街日報 1 184
## 6858 https://udn.com/news/story/6809/4678024 菲律賓海 1 184
## 6859 https://udn.com/news/story/6809/4678024 貿易 1 184
## 6860 https://udn.com/news/story/6809/4678024 進入 1 184
## 6861 https://udn.com/news/story/6809/4678024 傳遞 1 184
## 6862 https://udn.com/news/story/6809/4678024 僅說 1 184
## 6863 https://udn.com/news/story/6809/4678024 意味 1 184
## 6864 https://udn.com/news/story/6809/4678024 意義 1 184
## 6865 https://udn.com/news/story/6809/4678024 新冠肺炎 1 184
## 6866 https://udn.com/news/story/6809/4678024 當天 1 184
## 6867 https://udn.com/news/story/6809/4678024 盟友 1 184
## 6868 https://udn.com/news/story/6809/4678024 群島 1 184
## 6869 https://udn.com/news/story/6809/4678024 號與 1 184
## 6870 https://udn.com/news/story/6809/4678024 解放軍 1 184
## 6871 https://udn.com/news/story/6809/4678024 圖表 1 184
## 6872 https://udn.com/news/story/6809/4678024 夥伴 1 184
## 6873 https://udn.com/news/story/6809/4678024 維護 1 184
## 6874 https://udn.com/news/story/6809/4678024 緊張 1 184
## 6875 https://udn.com/news/story/6809/4678024 領土 1 184
## 6876 https://udn.com/news/story/6809/4678024 影響 1 184
## 6877 https://udn.com/news/story/6809/4678024 數飆 1 184
## 6878 https://udn.com/news/story/6809/4678024 確切 1 184
## 6879 https://udn.com/news/story/6809/4678024 確診 1 184
## 6880 https://udn.com/news/story/6809/4678024 魄力 1 184
## 6881 https://udn.com/news/story/6809/4678024 戰鬥 1 184
## 6882 https://udn.com/news/story/6809/4678024 隨行 1 184
## 6883 https://udn.com/news/story/6809/4678024 繁榮 1 184
## 6884 https://udn.com/news/story/6809/4678024 舉行 1 184
## 6885 https://udn.com/news/story/6809/4678024 鎮壓 1 184
## 6886 https://udn.com/news/story/6809/4678024 證明 1 184
## 6887 https://udn.com/news/story/6809/4678024 關係 1 184
## 6888 https://udn.com/news/story/6809/4678024 艦長 1 184
## 6889 https://udn.com/news/story/6809/4678024 艦隊 1 184
## 6890 https://udn.com/news/story/6809/4678024 艦載機 1 184
## 6891 https://udn.com/news/story/6809/4678125 一次 1 205
## 6892 https://udn.com/news/story/6809/4678125 也將 1 205
## 6893 https://udn.com/news/story/6809/4678125 千萬 1 205
## 6894 https://udn.com/news/story/6809/4678125 大規模 1 205
## 6895 https://udn.com/news/story/6809/4678125 小時 1 205
## 6896 https://udn.com/news/story/6809/4678125 不願 1 205
## 6897 https://udn.com/news/story/6809/4678125 中國 1 205
## 6898 https://udn.com/news/story/6809/4678125 中華人民共和國 1 205
## 6899 https://udn.com/news/story/6809/4678125 之間 1 205
## 6900 https://udn.com/news/story/6809/4678125 之際 1 205
## 6901 https://udn.com/news/story/6809/4678125 五角大廈 1 205
## 6902 https://udn.com/news/story/6809/4678125 內飛 1 205
## 6903 https://udn.com/news/story/6809/4678125 內容 1 205
## 6904 https://udn.com/news/story/6809/4678125 升溫 1 205
## 6905 https://udn.com/news/story/6809/4678125 少將 1 205
## 6906 https://udn.com/news/story/6809/4678125 日本 1 205
## 6907 https://udn.com/news/story/6809/4678125 以來 1 205
## 6908 https://udn.com/news/story/6809/4678125 加入 1 205
## 6909 https://udn.com/news/story/6809/4678125 正值 1 205
## 6910 https://udn.com/news/story/6809/4678125 全球 1 205
## 6911 https://udn.com/news/story/6809/4678125 同一 1 205
## 6912 https://udn.com/news/story/6809/4678125 地區 1 205
## 6913 https://udn.com/news/story/6809/4678125 存在 1 205
## 6914 https://udn.com/news/story/6809/4678125 安全 1 205
## 6915 https://udn.com/news/story/6809/4678125 自信 1 205
## 6916 https://udn.com/news/story/6809/4678125 自衛隊 1 205
## 6917 https://udn.com/news/story/6809/4678125 西沙 1 205
## 6918 https://udn.com/news/story/6809/4678125 位置 1 205
## 6919 https://udn.com/news/story/6809/4678125 作戰 1 205
## 6920 https://udn.com/news/story/6809/4678125 更強 1 205
## 6921 https://udn.com/news/story/6809/4678125 並非 1 205
## 6922 https://udn.com/news/story/6809/4678125 具體 1 205
## 6923 https://udn.com/news/story/6809/4678125 受訪 1 205
## 6924 https://udn.com/news/story/6809/4678125 承諾 1 205
## 6925 https://udn.com/news/story/6809/4678125 披露 1 205
## 6926 https://udn.com/news/story/6809/4678125 明確 1 205
## 6927 https://udn.com/news/story/6809/4678125 表達 1 205
## 6928 https://udn.com/news/story/6809/4678125 近年 1 205
## 6929 https://udn.com/news/story/6809/4678125 近期 1 205
## 6930 https://udn.com/news/story/6809/4678125 保持 1 205
## 6931 https://udn.com/news/story/6809/4678125 信號 1 205
## 6932 https://udn.com/news/story/6809/4678125 冠狀病毒 1 205
## 6933 https://udn.com/news/story/6809/4678125 前往 1 205
## 6934 https://udn.com/news/story/6809/4678125 宣布 1 205
## 6935 https://udn.com/news/story/6809/4678125 指揮官 1 205
## 6936 https://udn.com/news/story/6809/4678125 架次 1 205
## 6937 https://udn.com/news/story/6809/4678125 為期 1 205
## 6938 https://udn.com/news/story/6809/4678125 美方 1 205
## 6939 https://udn.com/news/story/6809/4678125 重大 1 205
## 6940 https://udn.com/news/story/6809/4678125 飛行 1 205
## 6941 https://udn.com/news/story/6809/4678125 首度 1 205
## 6942 https://udn.com/news/story/6809/4678125 展現 1 205
## 6943 https://udn.com/news/story/6809/4678125 展開 1 205
## 6944 https://udn.com/news/story/6809/4678125 時說 1 205
## 6945 https://udn.com/news/story/6809/4678125 海上 1 205
## 6946 https://udn.com/news/story/6809/4678125 海事局 1 205
## 6947 https://udn.com/news/story/6809/4678125 海南 1 205
## 6948 https://udn.com/news/story/6809/4678125 海域 1 205
## 6949 https://udn.com/news/story/6809/4678125 能力 1 205
## 6950 https://udn.com/news/story/6809/4678125 訊息 1 205
## 6951 https://udn.com/news/story/6809/4678125 針對 1 205
## 6952 https://udn.com/news/story/6809/4678125 針對性 1 205
## 6953 https://udn.com/news/story/6809/4678125 高強度 1 205
## 6954 https://udn.com/news/story/6809/4678125 高端 1 205
## 6955 https://udn.com/news/story/6809/4678125 國安法 1 205
## 6956 https://udn.com/news/story/6809/4678125 執行 1 205
## 6957 https://udn.com/news/story/6809/4678125 堅守 1 205
## 6958 https://udn.com/news/story/6809/4678125 將是 1 205
## 6959 https://udn.com/news/story/6809/4678125 崛起 1 205
## 6960 https://udn.com/news/story/6809/4678125 強度 1 205
## 6961 https://udn.com/news/story/6809/4678125 理由 1 205
## 6962 https://udn.com/news/story/6809/4678125 通常 1 205
## 6963 https://udn.com/news/story/6809/4678125 部分 1 205
## 6964 https://udn.com/news/story/6809/4678125 傍晚 1 205
## 6965 https://udn.com/news/story/6809/4678125 報導 1 205
## 6966 https://udn.com/news/story/6809/4678125 媒體 1 205
## 6967 https://udn.com/news/story/6809/4678125 幾百 1 205
## 6968 https://udn.com/news/story/6809/4678125 最新 1 205
## 6969 https://udn.com/news/story/6809/4678125 測試 1 205
## 6970 https://udn.com/news/story/6809/4678125 港區 1 205
## 6971 https://udn.com/news/story/6809/4678125 發出 1 205
## 6972 https://udn.com/news/story/6809/4678125 短期 1 205
## 6973 https://udn.com/news/story/6809/4678125 貿易 1 205
## 6974 https://udn.com/news/story/6809/4678125 新型 1 205
## 6975 https://udn.com/news/story/6809/4678125 當前 1 205
## 6976 https://udn.com/news/story/6809/4678125 盟邦 1 205
## 6977 https://udn.com/news/story/6809/4678125 盟國 1 205
## 6978 https://udn.com/news/story/6809/4678125 節奏 1 205
## 6979 https://udn.com/news/story/6809/4678125 群島 1 205
## 6980 https://udn.com/news/story/6809/4678125 號航艦 1 205
## 6981 https://udn.com/news/story/6809/4678125 號與 1 205
## 6982 https://udn.com/news/story/6809/4678125 圖表 1 205
## 6983 https://udn.com/news/story/6809/4678125 夥伴 1 205
## 6984 https://udn.com/news/story/6809/4678125 實彈演習 1 205
## 6985 https://udn.com/news/story/6809/4678125 緊張 1 205
## 6986 https://udn.com/news/story/6809/4678125 數飆 1 205
## 6987 https://udn.com/news/story/6809/4678125 樂見 1 205
## 6988 https://udn.com/news/story/6809/4678125 模擬 1 205
## 6989 https://udn.com/news/story/6809/4678125 確切 1 205
## 6990 https://udn.com/news/story/6809/4678125 確診 1 205
## 6991 https://udn.com/news/story/6809/4678125 戰力 1 205
## 6992 https://udn.com/news/story/6809/4678125 機動 1 205
## 6993 https://udn.com/news/story/6809/4678125 澳洲 1 205
## 6994 https://udn.com/news/story/6809/4678125 聲明 1 205
## 6995 https://udn.com/news/story/6809/4678125 擴張 1 205
## 6996 https://udn.com/news/story/6809/4678125 穩定 1 205
## 6997 https://udn.com/news/story/6809/4678125 關切 1 205
## 6998 https://udn.com/news/story/6809/4678125 艦艇 1 205
## 6999 https://udn.com/news/story/6809/4682238 一次 1 143
## 7000 https://udn.com/news/story/6809/4682238 一直 1 143
## 7001 https://udn.com/news/story/6809/4682238 一連 1 143
## 7002 https://udn.com/news/story/6809/4682238 力量 1 143
## 7003 https://udn.com/news/story/6809/4682238 上周末 1 143
## 7004 https://udn.com/news/story/6809/4682238 千萬 1 143
## 7005 https://udn.com/news/story/6809/4682238 不想 1 143
## 7006 https://udn.com/news/story/6809/4682238 中心 1 143
## 7007 https://udn.com/news/story/6809/4682238 五天 1 143
## 7008 https://udn.com/news/story/6809/4682238 升級 1 143
## 7009 https://udn.com/news/story/6809/4682238 日起 1 143
## 7010 https://udn.com/news/story/6809/4682238 主任 1 143
## 7011 https://udn.com/news/story/6809/4682238 他並 1 143
## 7012 https://udn.com/news/story/6809/4682238 他則 1 143
## 7013 https://udn.com/news/story/6809/4682238 包括 1 143
## 7014 https://udn.com/news/story/6809/4682238 可能 1 143
## 7015 https://udn.com/news/story/6809/4682238 台灣 1 143
## 7016 https://udn.com/news/story/6809/4682238 尼米茲 1 143
## 7017 https://udn.com/news/story/6809/4682238 打一仗 1 143
## 7018 https://udn.com/news/story/6809/4682238 打擊 1 143
## 7019 https://udn.com/news/story/6809/4682238 全球 1 143
## 7020 https://udn.com/news/story/6809/4682238 印度 1 143
## 7021 https://udn.com/news/story/6809/4682238 地同 1 143
## 7022 https://udn.com/news/story/6809/4682238 存在 1 143
## 7023 https://udn.com/news/story/6809/4682238 此一 1 143
## 7024 https://udn.com/news/story/6809/4682238 此前 1 143
## 7025 https://udn.com/news/story/6809/4682238 告訴 1 143
## 7026 https://udn.com/news/story/6809/4682238 完全 1 143
## 7027 https://udn.com/news/story/6809/4682238 沒有 1 143
## 7028 https://udn.com/news/story/6809/4682238 罕見 1 143
## 7029 https://udn.com/news/story/6809/4682238 並非 1 143
## 7030 https://udn.com/news/story/6809/4682238 亞洲 1 143
## 7031 https://udn.com/news/story/6809/4682238 受到 1 143
## 7032 https://udn.com/news/story/6809/4682238 所有 1 143
## 7033 https://udn.com/news/story/6809/4682238 東海 1 143
## 7034 https://udn.com/news/story/6809/4682238 非常 1 143
## 7035 https://udn.com/news/story/6809/4682238 則在 1 143
## 7036 https://udn.com/news/story/6809/4682238 很多 1 143
## 7037 https://udn.com/news/story/6809/4682238 指出 1 143
## 7038 https://udn.com/news/story/6809/4682238 是否 1 143
## 7039 https://udn.com/news/story/6809/4682238 派出 1 143
## 7040 https://udn.com/news/story/6809/4682238 看作 1 143
## 7041 https://udn.com/news/story/6809/4682238 研究 1 143
## 7042 https://udn.com/news/story/6809/4682238 美方 1 143
## 7043 https://udn.com/news/story/6809/4682238 美軍 1 143
## 7044 https://udn.com/news/story/6809/4682238 致力於 1 143
## 7045 https://udn.com/news/story/6809/4682238 軍事 1 143
## 7046 https://udn.com/news/story/6809/4682238 倡議 1 143
## 7047 https://udn.com/news/story/6809/4682238 展現 1 143
## 7048 https://udn.com/news/story/6809/4682238 海事 1 143
## 7049 https://udn.com/news/story/6809/4682238 海峽 1 143
## 7050 https://udn.com/news/story/6809/4682238 紙老虎 1 143
## 7051 https://udn.com/news/story/6809/4682238 能力 1 143
## 7052 https://udn.com/news/story/6809/4682238 問到 1 143
## 7053 https://udn.com/news/story/6809/4682238 國際 1 143
## 7054 https://udn.com/news/story/6809/4682238 國慶日 1 143
## 7055 https://udn.com/news/story/6809/4682238 接壤 1 143
## 7056 https://udn.com/news/story/6809/4682238 推進 1 143
## 7057 https://udn.com/news/story/6809/4682238 現代 1 143
## 7058 https://udn.com/news/story/6809/4682238 許多 1 143
## 7059 https://udn.com/news/story/6809/4682238 透明 1 143
## 7060 https://udn.com/news/story/6809/4682238 這天 1 143
## 7061 https://udn.com/news/story/6809/4682238 這是 1 143
## 7062 https://udn.com/news/story/6809/4682238 報導 1 143
## 7063 https://udn.com/news/story/6809/4682238 幾個 1 143
## 7064 https://udn.com/news/story/6809/4682238 無法 1 143
## 7065 https://udn.com/news/story/6809/4682238 發出 1 143
## 7066 https://udn.com/news/story/6809/4682238 絕對 1 143
## 7067 https://udn.com/news/story/6809/4682238 華府 1 143
## 7068 https://udn.com/news/story/6809/4682238 傳達 1 143
## 7069 https://udn.com/news/story/6809/4682238 傳遞 1 143
## 7070 https://udn.com/news/story/6809/4682238 意外 1 143
## 7071 https://udn.com/news/story/6809/4682238 新冠肺炎 1 143
## 7072 https://udn.com/news/story/6809/4682238 當被 1 143
## 7073 https://udn.com/news/story/6809/4682238 盟友 1 143
## 7074 https://udn.com/news/story/6809/4682238 運作 1 143
## 7075 https://udn.com/news/story/6809/4682238 過去 1 143
## 7076 https://udn.com/news/story/6809/4682238 雷根 1 143
## 7077 https://udn.com/news/story/6809/4682238 圖表 1 143
## 7078 https://udn.com/news/story/6809/4682238 對此 1 143
## 7079 https://udn.com/news/story/6809/4682238 演習 1 143
## 7080 https://udn.com/news/story/6809/4682238 演練 1 143
## 7081 https://udn.com/news/story/6809/4682238 緊張 1 143
## 7082 https://udn.com/news/story/6809/4682238 認為 1 143
## 7083 https://udn.com/news/story/6809/4682238 誤判 1 143
## 7084 https://udn.com/news/story/6809/4682238 影響 1 143
## 7085 https://udn.com/news/story/6809/4682238 數飆 1 143
## 7086 https://udn.com/news/story/6809/4682238 確診 1 143
## 7087 https://udn.com/news/story/6809/4682238 戰略 1 143
## 7088 https://udn.com/news/story/6809/4682238 戰線 1 143
## 7089 https://udn.com/news/story/6809/4682238 舉動 1 143
## 7090 https://udn.com/news/story/6809/4682238 還說 1 143
## 7091 https://udn.com/news/story/6809/4682238 邊界 1 143
## 7092 https://udn.com/news/story/6809/4682238 關係不大 1 143
## 7093 https://udn.com/news/story/6809/4682238 繼續 1 143
## 7094 https://udn.com/news/story/6809/4682642 一次 1 186
## 7095 https://udn.com/news/story/6809/4682642 一定 1 186
## 7096 https://udn.com/news/story/6809/4682642 千萬 1 186
## 7097 https://udn.com/news/story/6809/4682642 不甘示弱 1 186
## 7098 https://udn.com/news/story/6809/4682642 中國外交部 1 186
## 7099 https://udn.com/news/story/6809/4682642 之際 1 186
## 7100 https://udn.com/news/story/6809/4682642 互動 1 186
## 7101 https://udn.com/news/story/6809/4682642 今年 1 186
## 7102 https://udn.com/news/story/6809/4682642 允許 1 186
## 7103 https://udn.com/news/story/6809/4682642 公噸 1 186
## 7104 https://udn.com/news/story/6809/4682642 少將 1 186
## 7105 https://udn.com/news/story/6809/4682642 日起 1 186
## 7106 https://udn.com/news/story/6809/4682642 水手 1 186
## 7107 https://udn.com/news/story/6809/4682642 主權 1 186
## 7108 https://udn.com/news/story/6809/4682642 出現 1 186
## 7109 https://udn.com/news/story/6809/4682642 加強 1 186
## 7110 https://udn.com/news/story/6809/4682642 目睹 1 186
## 7111 https://udn.com/news/story/6809/4682642 交通 1 186
## 7112 https://udn.com/news/story/6809/4682642 全球 1 186
## 7113 https://udn.com/news/story/6809/4682642 共有 1 186
## 7114 https://udn.com/news/story/6809/4682642 各可 1 186
## 7115 https://udn.com/news/story/6809/4682642 各類 1 186
## 7116 https://udn.com/news/story/6809/4682642 合計 1 186
## 7117 https://udn.com/news/story/6809/4682642 地方 1 186
## 7118 https://udn.com/news/story/6809/4682642 地區 1 186
## 7119 https://udn.com/news/story/6809/4682642 地點 1 186
## 7120 https://udn.com/news/story/6809/4682642 多所 1 186
## 7121 https://udn.com/news/story/6809/4682642 安全 1 186
## 7122 https://udn.com/news/story/6809/4682642 忙於 1 186
## 7123 https://udn.com/news/story/6809/4682642 肌肉 1 186
## 7124 https://udn.com/news/story/6809/4682642 西沙 1 186
## 7125 https://udn.com/news/story/6809/4682642 作業 1 186
## 7126 https://udn.com/news/story/6809/4682642 告訴 1 186
## 7127 https://udn.com/news/story/6809/4682642 批評 1 186
## 7128 https://udn.com/news/story/6809/4682642 決心 1 186
## 7129 https://udn.com/news/story/6809/4682642 並未 1 186
## 7130 https://udn.com/news/story/6809/4682642 刻意 1 186
## 7131 https://udn.com/news/story/6809/4682642 所有 1 186
## 7132 https://udn.com/news/story/6809/4682642 武力 1 186
## 7133 https://udn.com/news/story/6809/4682642 武漢 1 186
## 7134 https://udn.com/news/story/6809/4682642 爭議 1 186
## 7135 https://udn.com/news/story/6809/4682642 肺炎 1 186
## 7136 https://udn.com/news/story/6809/4682642 保持 1 186
## 7137 https://udn.com/news/story/6809/4682642 冠狀病毒 1 186
## 7138 https://udn.com/news/story/6809/4682642 宣布 1 186
## 7139 https://udn.com/news/story/6809/4682642 指責 1 186
## 7140 https://udn.com/news/story/6809/4682642 指揮官 1 186
## 7141 https://udn.com/news/story/6809/4682642 挑撥離間 1 186
## 7142 https://udn.com/news/story/6809/4682642 派遣 1 186
## 7143 https://udn.com/news/story/6809/4682642 為期 1 186
## 7144 https://udn.com/news/story/6809/4682642 相當 1 186
## 7145 https://udn.com/news/story/6809/4682642 美中關係 1 186
## 7146 https://udn.com/news/story/6809/4682642 美方 1 186
## 7147 https://udn.com/news/story/6809/4682642 美國國防部 1 186
## 7148 https://udn.com/news/story/6809/4682642 軍機 1 186
## 7149 https://udn.com/news/story/6809/4682642 飛行 1 186
## 7150 https://udn.com/news/story/6809/4682642 展示 1 186
## 7151 https://udn.com/news/story/6809/4682642 捍衛 1 186
## 7152 https://udn.com/news/story/6809/4682642 格外 1 186
## 7153 https://udn.com/news/story/6809/4682642 消息 1 186
## 7154 https://udn.com/news/story/6809/4682642 疾病 1 186
## 7155 https://udn.com/news/story/6809/4682642 航行 1 186
## 7156 https://udn.com/news/story/6809/4682642 起降 1 186
## 7157 https://udn.com/news/story/6809/4682642 做法 1 186
## 7158 https://udn.com/news/story/6809/4682642 動員 1 186
## 7159 https://udn.com/news/story/6809/4682642 區域 1 186
## 7160 https://udn.com/news/story/6809/4682642 國家 1 186
## 7161 https://udn.com/news/story/6809/4682642 國際法 1 186
## 7162 https://udn.com/news/story/6809/4682642 國慶日 1 186
## 7163 https://udn.com/news/story/6809/4682642 專業 1 186
## 7164 https://udn.com/news/story/6809/4682642 從事 1 186
## 7165 https://udn.com/news/story/6809/4682642 排水量 1 186
## 7166 https://udn.com/news/story/6809/4682642 接受 1 186
## 7167 https://udn.com/news/story/6809/4682642 接觸 1 186
## 7168 https://udn.com/news/story/6809/4682642 第七 1 186
## 7169 https://udn.com/news/story/6809/4682642 船隻 1 186
## 7170 https://udn.com/news/story/6809/4682642 處理 1 186
## 7171 https://udn.com/news/story/6809/4682642 規模 1 186
## 7172 https://udn.com/news/story/6809/4682642 訪問 1 186
## 7173 https://udn.com/news/story/6809/4682642 許多 1 186
## 7174 https://udn.com/news/story/6809/4682642 這次 1 186
## 7175 https://udn.com/news/story/6809/4682642 這是 1 186
## 7176 https://udn.com/news/story/6809/4682642 最新 1 186
## 7177 https://udn.com/news/story/6809/4682642 發生 1 186
## 7178 https://udn.com/news/story/6809/4682642 象徵 1 186
## 7179 https://udn.com/news/story/6809/4682642 進行 1 186
## 7180 https://udn.com/news/story/6809/4682642 意外 1 186
## 7181 https://udn.com/news/story/6809/4682642 當天 1 186
## 7182 https://udn.com/news/story/6809/4682642 群島 1 186
## 7183 https://udn.com/news/story/6809/4682642 試圖 1 186
## 7184 https://udn.com/news/story/6809/4682642 路透社 1 186
## 7185 https://udn.com/news/story/6809/4682642 載運 1 186
## 7186 https://udn.com/news/story/6809/4682642 過去 1 186
## 7187 https://udn.com/news/story/6809/4682642 過程 1 186
## 7188 https://udn.com/news/story/6809/4682642 雷根 1 186
## 7189 https://udn.com/news/story/6809/4682642 電話 1 186
## 7190 https://udn.com/news/story/6809/4682642 預期 1 186
## 7191 https://udn.com/news/story/6809/4682642 圖表 1 186
## 7192 https://udn.com/news/story/6809/4682642 對方 1 186
## 7193 https://udn.com/news/story/6809/4682642 緊繃 1 186
## 7194 https://udn.com/news/story/6809/4682642 數飆 1 186
## 7195 https://udn.com/news/story/6809/4682642 確診 1 186
## 7196 https://udn.com/news/story/6809/4682642 適逢 1 186
## 7197 https://udn.com/news/story/6809/4682642 戰機 1 186
## 7198 https://udn.com/news/story/6809/4682642 應付 1 186
## 7199 https://udn.com/news/story/6809/4682642 繁忙 1 186
## 7200 https://udn.com/news/story/6809/4682642 聯合 1 186
## 7201 https://udn.com/news/story/6809/4682642 聲索 1 186
## 7202 https://udn.com/news/story/6809/4682642 隸屬 1 186
## 7203 https://udn.com/news/story/6809/4682642 雙方 1 186
## 7204 https://udn.com/news/story/6809/4682642 權利 1 186
## 7205 https://udn.com/news/story/6809/4686528 一再 1 215
## 7206 https://udn.com/news/story/6809/4686528 一次 1 215
## 7207 https://udn.com/news/story/6809/4686528 了解 1 215
## 7208 https://udn.com/news/story/6809/4686528 三方 1 215
## 7209 https://udn.com/news/story/6809/4686528 三防長 1 215
## 7210 https://udn.com/news/story/6809/4686528 三邊 1 215
## 7211 https://udn.com/news/story/6809/4686528 千萬 1 215
## 7212 https://udn.com/news/story/6809/4686528 大臣 1 215
## 7213 https://udn.com/news/story/6809/4686528 大陸 1 215
## 7214 https://udn.com/news/story/6809/4686528 中國 1 215
## 7215 https://udn.com/news/story/6809/4686528 公約 1 215
## 7216 https://udn.com/news/story/6809/4686528 分享 1 215
## 7217 https://udn.com/news/story/6809/4686528 太郎 1 215
## 7218 https://udn.com/news/story/6809/4686528 日本 1 215
## 7219 https://udn.com/news/story/6809/4686528 北京 1 215
## 7220 https://udn.com/news/story/6809/4686528 可能 1 215
## 7221 https://udn.com/news/story/6809/4686528 必須 1 215
## 7222 https://udn.com/news/story/6809/4686528 民兵 1 215
## 7223 https://udn.com/news/story/6809/4686528 全球 1 215
## 7224 https://udn.com/news/story/6809/4686528 共享 1 215
## 7225 https://udn.com/news/story/6809/4686528 合作 1 215
## 7226 https://udn.com/news/story/6809/4686528 同盟 1 215
## 7227 https://udn.com/news/story/6809/4686528 在內 1 215
## 7228 https://udn.com/news/story/6809/4686528 艾思博 1 215
## 7229 https://udn.com/news/story/6809/4686528 努力 1 215
## 7230 https://udn.com/news/story/6809/4686528 步驟 1 215
## 7231 https://udn.com/news/story/6809/4686528 決議 1 215
## 7232 https://udn.com/news/story/6809/4686528 防衛 1 215
## 7233 https://udn.com/news/story/6809/4686528 事件 1 215
## 7234 https://udn.com/news/story/6809/4686528 使用 1 215
## 7235 https://udn.com/news/story/6809/4686528 制止 1 215
## 7236 https://udn.com/news/story/6809/4686528 制裁 1 215
## 7237 https://udn.com/news/story/6809/4686528 協調 1 215
## 7238 https://udn.com/news/story/6809/4686528 和平解決 1 215
## 7239 https://udn.com/news/story/6809/4686528 所有 1 215
## 7240 https://udn.com/news/story/6809/4686528 承諾 1 215
## 7241 https://udn.com/news/story/6809/4686528 武力 1 215
## 7242 https://udn.com/news/story/6809/4686528 河野 1 215
## 7243 https://udn.com/news/story/6809/4686528 爭議 1 215
## 7244 https://udn.com/news/story/6809/4686528 狀況 1 215
## 7245 https://udn.com/news/story/6809/4686528 長期 1 215
## 7246 https://udn.com/news/story/6809/4686528 促進 1 215
## 7247 https://udn.com/news/story/6809/4686528 信任 1 215
## 7248 https://udn.com/news/story/6809/4686528 威脅 1 215
## 7249 https://udn.com/news/story/6809/4686528 建立 1 215
## 7250 https://udn.com/news/story/6809/4686528 疫情 1 215
## 7251 https://udn.com/news/story/6809/4686528 相關 1 215
## 7252 https://udn.com/news/story/6809/4686528 美中才剛 1 215
## 7253 https://udn.com/news/story/6809/4686528 美國 1 215
## 7254 https://udn.com/news/story/6809/4686528 美國國防部 1 215
## 7255 https://udn.com/news/story/6809/4686528 美澳日 1 215
## 7256 https://udn.com/news/story/6809/4686528 重回 1 215
## 7257 https://udn.com/news/story/6809/4686528 飛越 1 215
## 7258 https://udn.com/news/story/6809/4686528 香港 1 215
## 7259 https://udn.com/news/story/6809/4686528 海洋法 1 215
## 7260 https://udn.com/news/story/6809/4686528 海域 1 215
## 7261 https://udn.com/news/story/6809/4686528 海警 1 215
## 7262 https://udn.com/news/story/6809/4686528 脅迫 1 215
## 7263 https://udn.com/news/story/6809/4686528 航行 1 215
## 7264 https://udn.com/news/story/6809/4686528 訊息 1 215
## 7265 https://udn.com/news/story/6809/4686528 貢獻 1 215
## 7266 https://udn.com/news/story/6809/4686528 做出 1 215
## 7267 https://udn.com/news/story/6809/4686528 停止 1 215
## 7268 https://udn.com/news/story/6809/4686528 區域 1 215
## 7269 https://udn.com/news/story/6809/4686528 國安法 1 215
## 7270 https://udn.com/news/story/6809/4686528 國家 1 215
## 7271 https://udn.com/news/story/6809/4686528 國際 1 215
## 7272 https://udn.com/news/story/6809/4686528 國際法 1 215
## 7273 https://udn.com/news/story/6809/4686528 密切 1 215
## 7274 https://udn.com/news/story/6809/4686528 強制 1 215
## 7275 https://udn.com/news/story/6809/4686528 採取 1 215
## 7276 https://udn.com/news/story/6809/4686528 推動 1 215
## 7277 https://udn.com/news/story/6809/4686528 措施 1 215
## 7278 https://udn.com/news/story/6809/4686528 晚間 1 215
## 7279 https://udn.com/news/story/6809/4686528 深入 1 215
## 7280 https://udn.com/news/story/6809/4686528 深切 1 215
## 7281 https://udn.com/news/story/6809/4686528 單方面 1 215
## 7282 https://udn.com/news/story/6809/4686528 提到 1 215
## 7283 https://udn.com/news/story/6809/4686528 最新 1 215
## 7284 https://udn.com/news/story/6809/4686528 發出 1 215
## 7285 https://udn.com/news/story/6809/4686528 發生 1 215
## 7286 https://udn.com/news/story/6809/4686528 發射 1 215
## 7287 https://udn.com/news/story/6809/4686528 結束 1 215
## 7288 https://udn.com/news/story/6809/4686528 視訊 1 215
## 7289 https://udn.com/news/story/6809/4686528 開發 1 215
## 7290 https://udn.com/news/story/6809/4686528 暗批 1 215
## 7291 https://udn.com/news/story/6809/4686528 會議 1 215
## 7292 https://udn.com/news/story/6809/4686528 煤炭 1 215
## 7293 https://udn.com/news/story/6809/4686528 禁運 1 215
## 7294 https://udn.com/news/story/6809/4686528 落實 1 215
## 7295 https://udn.com/news/story/6809/4686528 資源 1 215
## 7296 https://udn.com/news/story/6809/4686528 雷諾茲 1 215
## 7297 https://udn.com/news/story/6809/4686528 圖表 1 215
## 7298 https://udn.com/news/story/6809/4686528 夥伴關係 1 215
## 7299 https://udn.com/news/story/6809/4686528 實質 1 215
## 7300 https://udn.com/news/story/6809/4686528 對抗 1 215
## 7301 https://udn.com/news/story/6809/4686528 構成 1 215
## 7302 https://udn.com/news/story/6809/4686528 演習 1 215
## 7303 https://udn.com/news/story/6809/4686528 維護 1 215
## 7304 https://udn.com/news/story/6809/4686528 緊張 1 215
## 7305 https://udn.com/news/story/6809/4686528 價值 1 215
## 7306 https://udn.com/news/story/6809/4686528 彈道飛彈 1 215
## 7307 https://udn.com/news/story/6809/4686528 數飆 1 215
## 7308 https://udn.com/news/story/6809/4686528 確診 1 215
## 7309 https://udn.com/news/story/6809/4686528 緩解 1 215
## 7310 https://udn.com/news/story/6809/4686528 談判桌 1 215
## 7311 https://udn.com/news/story/6809/4686528 鄰國 1 215
## 7312 https://udn.com/news/story/6809/4686528 澳洲 1 215
## 7313 https://udn.com/news/story/6809/4686528 環境 1 215
## 7314 https://udn.com/news/story/6809/4686528 聯合國 1 215
## 7315 https://udn.com/news/story/6809/4686528 聯合國安全理事會 1 215
## 7316 https://udn.com/news/story/6809/4686528 舉行 1 215
## 7317 https://udn.com/news/story/6809/4686528 嚴重威脅 1 215
## 7318 https://udn.com/news/story/6809/4686528 議題 1 215
## 7319 https://udn.com/news/story/6809/4686528 譴責 1 215
## 7320 https://udn.com/news/story/6809/4695303 一次 1 252
## 7321 https://udn.com/news/story/6809/4695303 一度 1 252
## 7322 https://udn.com/news/story/6809/4695303 一個月 1 252
## 7323 https://udn.com/news/story/6809/4695303 一座 1 252
## 7324 https://udn.com/news/story/6809/4695303 人工島 1 252
## 7325 https://udn.com/news/story/6809/4695303 三座 1 252
## 7326 https://udn.com/news/story/6809/4695303 三菱 1 252
## 7327 https://udn.com/news/story/6809/4695303 上空 1 252
## 7328 https://udn.com/news/story/6809/4695303 千萬 1 252
## 7329 https://udn.com/news/story/6809/4695303 大陸 1 252
## 7330 https://udn.com/news/story/6809/4695303 不易 1 252
## 7331 https://udn.com/news/story/6809/4695303 之間 1 252
## 7332 https://udn.com/news/story/6809/4695303 分析 1 252
## 7333 https://udn.com/news/story/6809/4695303 升空 1 252
## 7334 https://udn.com/news/story/6809/4695303 引人注目 1 252
## 7335 https://udn.com/news/story/6809/4695303 支配權 1 252
## 7336 https://udn.com/news/story/6809/4695303 方面 1 252
## 7337 https://udn.com/news/story/6809/4695303 日媒 1 252
## 7338 https://udn.com/news/story/6809/4695303 日圓 1 252
## 7339 https://udn.com/news/story/6809/4695303 以降 1 252
## 7340 https://udn.com/news/story/6809/4695303 出口 1 252
## 7341 https://udn.com/news/story/6809/4695303 出售 1 252
## 7342 https://udn.com/news/story/6809/4695303 北上 1 252
## 7343 https://udn.com/news/story/6809/4695303 北部 1 252
## 7344 https://udn.com/news/story/6809/4695303 半島 1 252
## 7345 https://udn.com/news/story/6809/4695303 可望 1 252
## 7346 https://udn.com/news/story/6809/4695303 台菲 1 252
## 7347 https://udn.com/news/story/6809/4695303 四座 1 252
## 7348 https://udn.com/news/story/6809/4695303 外銷 1 252
## 7349 https://udn.com/news/story/6809/4695303 本島 1 252
## 7350 https://udn.com/news/story/6809/4695303 全球 1 252
## 7351 https://udn.com/news/story/6809/4695303 共軍 1 252
## 7352 https://udn.com/news/story/6809/4695303 共機經 1 252
## 7353 https://udn.com/news/story/6809/4695303 合作 1 252
## 7354 https://udn.com/news/story/6809/4695303 合約 1 252
## 7355 https://udn.com/news/story/6809/4695303 安保 1 252
## 7356 https://udn.com/news/story/6809/4695303 成品 1 252
## 7357 https://udn.com/news/story/6809/4695303 成為 1 252
## 7358 https://udn.com/news/story/6809/4695303 有益於 1 252
## 7359 https://udn.com/news/story/6809/4695303 此舉 1 252
## 7360 https://udn.com/news/story/6809/4695303 希望 1 252
## 7361 https://udn.com/news/story/6809/4695303 攻打 1 252
## 7362 https://udn.com/news/story/6809/4695303 車載 1 252
## 7363 https://udn.com/news/story/6809/4695303 防空 1 252
## 7364 https://udn.com/news/story/6809/4695303 防禦力 1 252
## 7365 https://udn.com/news/story/6809/4695303 並派 1 252
## 7366 https://udn.com/news/story/6809/4695303 兩地 1 252
## 7367 https://udn.com/news/story/6809/4695303 兩個 1 252
## 7368 https://udn.com/news/story/6809/4695303 受到 1 252
## 7369 https://udn.com/news/story/6809/4695303 固定 1 252
## 7370 https://udn.com/news/story/6809/4695303 固定式 1 252
## 7371 https://udn.com/news/story/6809/4695303 官員 1 252
## 7372 https://udn.com/news/story/6809/4695303 往返 1 252
## 7373 https://udn.com/news/story/6809/4695303 近年 1 252
## 7374 https://udn.com/news/story/6809/4695303 近年來 1 252
## 7375 https://udn.com/news/story/6809/4695303 門戶 1 252
## 7376 https://udn.com/news/story/6809/4695303 前進 1 252
## 7377 https://udn.com/news/story/6809/4695303 南沙 1 252
## 7378 https://udn.com/news/story/6809/4695303 建造 1 252
## 7379 https://udn.com/news/story/6809/4695303 建構 1 252
## 7380 https://udn.com/news/story/6809/4695303 急著 1 252
## 7381 https://udn.com/news/story/6809/4695303 政府 1 252
## 7382 https://udn.com/news/story/6809/4695303 活動 1 252
## 7383 https://udn.com/news/story/6809/4695303 研議 1 252
## 7384 https://udn.com/news/story/6809/4695303 紀伊 1 252
## 7385 https://udn.com/news/story/6809/4695303 要求 1 252
## 7386 https://udn.com/news/story/6809/4695303 重要 1 252
## 7387 https://udn.com/news/story/6809/4695303 飛機 1 252
## 7388 https://udn.com/news/story/6809/4695303 首次 1 252
## 7389 https://udn.com/news/story/6809/4695303 原則 1 252
## 7390 https://udn.com/news/story/6809/4695303 弱點 1 252
## 7391 https://udn.com/news/story/6809/4695303 航空 1 252
## 7392 https://udn.com/news/story/6809/4695303 起降 1 252
## 7393 https://udn.com/news/story/6809/4695303 追蹤 1 252
## 7394 https://udn.com/news/story/6809/4695303 高度 1 252
## 7395 https://udn.com/news/story/6809/4695303 動向 1 252
## 7396 https://udn.com/news/story/6809/4695303 國防 1 252
## 7397 https://udn.com/news/story/6809/4695303 國產 1 252
## 7398 https://udn.com/news/story/6809/4695303 基礎 1 252
## 7399 https://udn.com/news/story/6809/4695303 將以 1 252
## 7400 https://udn.com/news/story/6809/4695303 將成 1 252
## 7401 https://udn.com/news/story/6809/4695303 將有助 1 252
## 7402 https://udn.com/news/story/6809/4695303 得到 1 252
## 7403 https://udn.com/news/story/6809/4695303 牽制 1 252
## 7404 https://udn.com/news/story/6809/4695303 產經 1 252
## 7405 https://udn.com/news/story/6809/4695303 移動 1 252
## 7406 https://udn.com/news/story/6809/4695303 移動式 1 252
## 7407 https://udn.com/news/story/6809/4695303 陸上 1 252
## 7408 https://udn.com/news/story/6809/4695303 掌握 1 252
## 7409 https://udn.com/news/story/6809/4695303 提早 1 252
## 7410 https://udn.com/news/story/6809/4695303 提供情報 1 252
## 7411 https://udn.com/news/story/6809/4695303 提前 1 252
## 7412 https://udn.com/news/story/6809/4695303 最新 1 252
## 7413 https://udn.com/news/story/6809/4695303 無法 1 252
## 7414 https://udn.com/news/story/6809/4695303 發展 1 252
## 7415 https://udn.com/news/story/6809/4695303 菲方 1 252
## 7416 https://udn.com/news/story/6809/4695303 越來越 1 252
## 7417 https://udn.com/news/story/6809/4695303 跑道 1 252
## 7418 https://udn.com/news/story/6809/4695303 進行 1 252
## 7419 https://udn.com/news/story/6809/4695303 郵件 1 252
## 7420 https://udn.com/news/story/6809/4695303 開發 1 252
## 7421 https://udn.com/news/story/6809/4695303 階段 1 252
## 7422 https://udn.com/news/story/6809/4695303 意在 1 252
## 7423 https://udn.com/news/story/6809/4695303 新冠肺炎 1 252
## 7424 https://udn.com/news/story/6809/4695303 新聞報導 1 252
## 7425 https://udn.com/news/story/6809/4695303 經宮 1 252
## 7426 https://udn.com/news/story/6809/4695303 群島 1 252
## 7427 https://udn.com/news/story/6809/4695303 裝備 1 252
## 7428 https://udn.com/news/story/6809/4695303 逼近 1 252
## 7429 https://udn.com/news/story/6809/4695303 電機 1 252
## 7430 https://udn.com/news/story/6809/4695303 圖表 1 252
## 7431 https://udn.com/news/story/6809/4695303 對共機 1 252
## 7432 https://udn.com/news/story/6809/4695303 緊急 1 252
## 7433 https://udn.com/news/story/6809/4695303 認為 1 252
## 7434 https://udn.com/news/story/6809/4695303 領空 1 252
## 7435 https://udn.com/news/story/6809/4695303 價格 1 252
## 7436 https://udn.com/news/story/6809/4695303 影響 1 252
## 7437 https://udn.com/news/story/6809/4695303 數飆 1 252
## 7438 https://udn.com/news/story/6809/4695303 確保 1 252
## 7439 https://udn.com/news/story/6809/4695303 確診 1 252
## 7440 https://udn.com/news/story/6809/4695303 締約 1 252
## 7441 https://udn.com/news/story/6809/4695303 銷給 1 252
## 7442 https://udn.com/news/story/6809/4695303 靠近 1 252
## 7443 https://udn.com/news/story/6809/4695303 戰機 1 252
## 7444 https://udn.com/news/story/6809/4695303 優勢 1 252
## 7445 https://udn.com/news/story/6809/4695303 趨勢 1 252
## 7446 https://udn.com/news/story/6809/4695303 轉移 1 252
## 7447 https://udn.com/news/story/6809/4695303 簽字 1 252
## 7448 https://udn.com/news/story/6809/4695303 關係 1 252
## 7449 https://udn.com/news/story/6809/4699778 一次 1 214
## 7450 https://udn.com/news/story/6809/4699778 一起 1 214
## 7451 https://udn.com/news/story/6809/4699778 九段 1 214
## 7452 https://udn.com/news/story/6809/4699778 千萬 1 214
## 7453 https://udn.com/news/story/6809/4699778 大部份 1 214
## 7454 https://udn.com/news/story/6809/4699778 不能 1 214
## 7455 https://udn.com/news/story/6809/4699778 中共 1 214
## 7456 https://udn.com/news/story/6809/4699778 中華人民共和國 1 214
## 7457 https://udn.com/news/story/6809/4699778 允許 1 214
## 7458 https://udn.com/news/story/6809/4699778 反對 1 214
## 7459 https://udn.com/news/story/6809/4699778 手段 1 214
## 7460 https://udn.com/news/story/6809/4699778 水域 1 214
## 7461 https://udn.com/news/story/6809/4699778 水裡 1 214
## 7462 https://udn.com/news/story/6809/4699778 世界 1 214
## 7463 https://udn.com/news/story/6809/4699778 可能 1 214
## 7464 https://udn.com/news/story/6809/4699778 正在 1 214
## 7465 https://udn.com/news/story/6809/4699778 目前 1 214
## 7466 https://udn.com/news/story/6809/4699778 仲裁庭 1 214
## 7467 https://udn.com/news/story/6809/4699778 全球 1 214
## 7468 https://udn.com/news/story/6809/4699778 共同利益 1 214
## 7469 https://udn.com/news/story/6809/4699778 共享 1 214
## 7470 https://udn.com/news/story/6809/4699778 印太 1 214
## 7471 https://udn.com/news/story/6809/4699778 印尼 1 214
## 7472 https://udn.com/news/story/6809/4699778 合作 1 214
## 7473 https://udn.com/news/story/6809/4699778 合法 1 214
## 7474 https://udn.com/news/story/6809/4699778 行將 1 214
## 7475 https://udn.com/news/story/6809/4699778 利益 1 214
## 7476 https://udn.com/news/story/6809/4699778 努力 1 214
## 7477 https://udn.com/news/story/6809/4699778 完全 1 214
## 7478 https://udn.com/news/story/6809/4699778 汶萊 1 214
## 7479 https://udn.com/news/story/6809/4699778 受到 1 214
## 7480 https://udn.com/news/story/6809/4699778 和平 1 214
## 7481 https://udn.com/news/story/6809/4699778 尚有 1 214
## 7482 https://udn.com/news/story/6809/4699778 武力 1 214
## 7483 https://udn.com/news/story/6809/4699778 沿海 1 214
## 7484 https://udn.com/news/story/6809/4699778 沿海地區 1 214
## 7485 https://udn.com/news/story/6809/4699778 法律依據 1 214
## 7486 https://udn.com/news/story/6809/4699778 爭端 1 214
## 7487 https://udn.com/news/story/6809/4699778 爭議 1 214
## 7488 https://udn.com/news/story/6809/4699778 長期 1 214
## 7489 https://udn.com/news/story/6809/4699778 便強 1 214
## 7490 https://udn.com/news/story/6809/4699778 前所未有 1 214
## 7491 https://udn.com/news/story/6809/4699778 威脅 1 214
## 7492 https://udn.com/news/story/6809/4699778 威嚇 1 214
## 7493 https://udn.com/news/story/6809/4699778 宣布 1 214
## 7494 https://udn.com/news/story/6809/4699778 宣傳 1 214
## 7495 https://udn.com/news/story/6809/4699778 宣稱 1 214
## 7496 https://udn.com/news/story/6809/4699778 持久 1 214
## 7497 https://udn.com/news/story/6809/4699778 指出 1 214
## 7498 https://udn.com/news/story/6809/4699778 施加 1 214
## 7499 https://udn.com/news/story/6809/4699778 疫情 1 214
## 7500 https://udn.com/news/story/6809/4699778 重要 1 214
## 7501 https://udn.com/news/story/6809/4699778 海事 1 214
## 7502 https://udn.com/news/story/6809/4699778 海權 1 214
## 7503 https://udn.com/news/story/6809/4699778 破壞 1 214
## 7504 https://udn.com/news/story/6809/4699778 秩序 1 214
## 7505 https://udn.com/news/story/6809/4699778 馬來西亞 1 214
## 7506 https://udn.com/news/story/6809/4699778 國務卿 1 214
## 7507 https://udn.com/news/story/6809/4699778 國務院 1 214
## 7508 https://udn.com/news/story/6809/4699778 將與 1 214
## 7509 https://udn.com/news/story/6809/4699778 控制 1 214
## 7510 https://udn.com/news/story/6809/4699778 推特 1 214
## 7511 https://udn.com/news/story/6809/4699778 推動 1 214
## 7512 https://udn.com/news/story/6809/4699778 淹沒 1 214
## 7513 https://udn.com/news/story/6809/4699778 規定 1 214
## 7514 https://udn.com/news/story/6809/4699778 透過 1 214
## 7515 https://udn.com/news/story/6809/4699778 這已 1 214
## 7516 https://udn.com/news/story/6809/4699778 造成 1 214
## 7517 https://udn.com/news/story/6809/4699778 曾母暗沙 1 214
## 7518 https://udn.com/news/story/6809/4699778 最南端 1 214
## 7519 https://udn.com/news/story/6809/4699778 最新 1 214
## 7520 https://udn.com/news/story/6809/4699778 發布 1 214
## 7521 https://udn.com/news/story/6809/4699778 菲律賓 1 214
## 7522 https://udn.com/news/story/6809/4699778 視為 1 214
## 7523 https://udn.com/news/story/6809/4699778 貿易往來 1 214
## 7524 https://udn.com/news/story/6809/4699778 越南 1 214
## 7525 https://udn.com/news/story/6809/4699778 開放 1 214
## 7526 https://udn.com/news/story/6809/4699778 意志 1 214
## 7527 https://udn.com/news/story/6809/4699778 意圖 1 214
## 7528 https://udn.com/news/story/6809/4699778 盟友 1 214
## 7529 https://udn.com/news/story/6809/4699778 盟國 1 214
## 7530 https://udn.com/news/story/6809/4699778 義務 1 214
## 7531 https://udn.com/news/story/6809/4699778 解決 1 214
## 7532 https://udn.com/news/story/6809/4699778 圖表 1 214
## 7533 https://udn.com/news/story/6809/4699778 實施 1 214
## 7534 https://udn.com/news/story/6809/4699778 維持 1 214
## 7535 https://udn.com/news/story/6809/4699778 認為 1 214
## 7536 https://udn.com/news/story/6809/4699778 領土 1 214
## 7537 https://udn.com/news/story/6809/4699778 廣泛 1 214
## 7538 https://udn.com/news/story/6809/4699778 數飆 1 214
## 7539 https://udn.com/news/story/6809/4699778 確診 1 214
## 7540 https://udn.com/news/story/6809/4699778 遭到 1 214
## 7541 https://udn.com/news/story/6809/4699778 擁有 1 214
## 7542 https://udn.com/news/story/6809/4699778 擁護 1 214
## 7543 https://udn.com/news/story/6809/4699778 據此 1 214
## 7544 https://udn.com/news/story/6809/4699778 遵守 1 214
## 7545 https://udn.com/news/story/6809/4699778 獲取 1 214
## 7546 https://udn.com/news/story/6809/4699778 聲稱 1 214
## 7547 https://udn.com/news/story/6809/4699778 離岸 1 214
## 7548 https://udn.com/news/story/6809/4699778 穩定 1 214
## 7549 https://udn.com/news/story/6809/4699778 騷擾 1 214
## 7550 https://udn.com/news/story/6809/4699778 霸佔 1 214
## 7551 https://udn.com/news/story/6809/4699831 一次 1 134
## 7552 https://udn.com/news/story/6809/4699831 一改 1 134
## 7553 https://udn.com/news/story/6809/4699831 九段 1 134
## 7554 https://udn.com/news/story/6809/4699831 上旬 1 134
## 7555 https://udn.com/news/story/6809/4699831 千萬 1 134
## 7556 https://udn.com/news/story/6809/4699831 大部分 1 134
## 7557 https://udn.com/news/story/6809/4699831 川普 1 134
## 7558 https://udn.com/news/story/6809/4699831 不在 1 134
## 7559 https://udn.com/news/story/6809/4699831 之前 1 134
## 7560 https://udn.com/news/story/6809/4699831 反對 1 134
## 7561 https://udn.com/news/story/6809/4699831 引發 1 134
## 7562 https://udn.com/news/story/6809/4699831 日益 1 134
## 7563 https://udn.com/news/story/6809/4699831 主張 1 134
## 7564 https://udn.com/news/story/6809/4699831 代表 1 134
## 7565 https://udn.com/news/story/6809/4699831 加劇 1 134
## 7566 https://udn.com/news/story/6809/4699831 北京 1 134
## 7567 https://udn.com/news/story/6809/4699831 外界 1 134
## 7568 https://udn.com/news/story/6809/4699831 打擊 1 134
## 7569 https://udn.com/news/story/6809/4699831 仲裁 1 134
## 7570 https://udn.com/news/story/6809/4699831 全球 1 134
## 7571 https://udn.com/news/story/6809/4699831 印太 1 134
## 7572 https://udn.com/news/story/6809/4699831 同步 1 134
## 7573 https://udn.com/news/story/6809/4699831 旨在 1 134
## 7574 https://udn.com/news/story/6809/4699831 此舉 1 134
## 7575 https://udn.com/news/story/6809/4699831 此類 1 134
## 7576 https://udn.com/news/story/6809/4699831 西沙 1 134
## 7577 https://udn.com/news/story/6809/4699831 佔領 1 134
## 7578 https://udn.com/news/story/6809/4699831 局勢 1 134
## 7579 https://udn.com/news/story/6809/4699831 沒有 1 134
## 7580 https://udn.com/news/story/6809/4699831 兩個 1 134
## 7581 https://udn.com/news/story/6809/4699831 周邊 1 134
## 7582 https://udn.com/news/story/6809/4699831 尚有 1 134
## 7583 https://udn.com/news/story/6809/4699831 抵制 1 134
## 7584 https://udn.com/news/story/6809/4699831 明確 1 134
## 7585 https://udn.com/news/story/6809/4699831 法律依據 1 134
## 7586 https://udn.com/news/story/6809/4699831 法院 1 134
## 7587 https://udn.com/news/story/6809/4699831 爭端 1 134
## 7588 https://udn.com/news/story/6809/4699831 近年 1 134
## 7589 https://udn.com/news/story/6809/4699831 持續 1 134
## 7590 https://udn.com/news/story/6809/4699831 指出 1 134
## 7591 https://udn.com/news/story/6809/4699831 政府 1 134
## 7592 https://udn.com/news/story/6809/4699831 政策 1 134
## 7593 https://udn.com/news/story/6809/4699831 派遣 1 134
## 7594 https://udn.com/news/story/6809/4699831 為名 1 134
## 7595 https://udn.com/news/story/6809/4699831 疫情 1 134
## 7596 https://udn.com/news/story/6809/4699831 穿越 1 134
## 7597 https://udn.com/news/story/6809/4699831 美中 1 134
## 7598 https://udn.com/news/story/6809/4699831 軍演 1 134
## 7599 https://udn.com/news/story/6809/4699831 重要 1 134
## 7600 https://udn.com/news/story/6809/4699831 時間 1 134
## 7601 https://udn.com/news/story/6809/4699831 海牙 1 134
## 7602 https://udn.com/news/story/6809/4699831 航行 1 134
## 7603 https://udn.com/news/story/6809/4699831 航空母艦 1 134
## 7604 https://udn.com/news/story/6809/4699831 國家 1 134
## 7605 https://udn.com/news/story/6809/4699831 國務卿 1 134
## 7606 https://udn.com/news/story/6809/4699831 國務院 1 134
## 7607 https://udn.com/news/story/6809/4699831 常設 1 134
## 7608 https://udn.com/news/story/6809/4699831 強化 1 134
## 7609 https://udn.com/news/story/6809/4699831 從未 1 134
## 7610 https://udn.com/news/story/6809/4699831 控制 1 134
## 7611 https://udn.com/news/story/6809/4699831 荷蘭 1 134
## 7612 https://udn.com/news/story/6809/4699831 透過 1 134
## 7613 https://udn.com/news/story/6809/4699831 最新 1 134
## 7614 https://udn.com/news/story/6809/4699831 發布 1 134
## 7615 https://udn.com/news/story/6809/4699831 進行 1 134
## 7616 https://udn.com/news/story/6809/4699831 開放 1 134
## 7617 https://udn.com/news/story/6809/4699831 群到 1 134
## 7618 https://udn.com/news/story/6809/4699831 群島 1 134
## 7619 https://udn.com/news/story/6809/4699831 解放軍 1 134
## 7620 https://udn.com/news/story/6809/4699831 過去 1 134
## 7621 https://udn.com/news/story/6809/4699831 圖表 1 134
## 7622 https://udn.com/news/story/6809/4699831 實施 1 134
## 7623 https://udn.com/news/story/6809/4699831 對立 1 134
## 7624 https://udn.com/news/story/6809/4699831 維護 1 134
## 7625 https://udn.com/news/story/6809/4699831 認定 1 134
## 7626 https://udn.com/news/story/6809/4699831 增強 1 134
## 7627 https://udn.com/news/story/6809/4699831 數飆 1 134
## 7628 https://udn.com/news/story/6809/4699831 歐說 1 134
## 7629 https://udn.com/news/story/6809/4699831 確診 1 134
## 7630 https://udn.com/news/story/6809/4699831 儘管如此 1 134
## 7631 https://udn.com/news/story/6809/4699831 擁有 1 134
## 7632 https://udn.com/news/story/6809/4699831 擁護 1 134
## 7633 https://udn.com/news/story/6809/4699831 操演 1 134
## 7634 https://udn.com/news/story/6809/4699831 選邊 1 134
## 7635 https://udn.com/news/story/6809/4699831 總統 1 134
## 7636 https://udn.com/news/story/6809/4699831 聲明 1 134
## 7637 https://udn.com/news/story/6809/4699831 聲索 1 134
## 7638 https://udn.com/news/story/6809/4699831 聲稱 1 134
## 7639 https://udn.com/news/story/6809/4699831 豐富 1 134
## 7640 https://udn.com/news/story/6809/4699831 離岸 1 134
## 7641 https://udn.com/news/story/6809/4699831 關注 1 134
## 7642 https://udn.com/news/story/6809/4699831 艦機 1 134
## 7643 https://udn.com/news/story/6809/4699831 霸凌 1 134
## 7644 https://udn.com/news/story/6809/4702067 一次 1 236
## 7645 https://udn.com/news/story/6809/4702067 千萬 1 236
## 7646 https://udn.com/news/story/6809/4702067 大部分 1 236
## 7647 https://udn.com/news/story/6809/4702067 工具 1 236
## 7648 https://udn.com/news/story/6809/4702067 工程 1 236
## 7649 https://udn.com/news/story/6809/4702067 不可 1 236
## 7650 https://udn.com/news/story/6809/4702067 中心 1 236
## 7651 https://udn.com/news/story/6809/4702067 中方 1 236
## 7652 https://udn.com/news/story/6809/4702067 之處 1 236
## 7653 https://udn.com/news/story/6809/4702067 允許 1 236
## 7654 https://udn.com/news/story/6809/4702067 公司 1 236
## 7655 https://udn.com/news/story/6809/4702067 切身利益 1 236
## 7656 https://udn.com/news/story/6809/4702067 心態 1 236
## 7657 https://udn.com/news/story/6809/4702067 水源 1 236
## 7658 https://udn.com/news/story/6809/4702067 主張 1 236
## 7659 https://udn.com/news/story/6809/4702067 代表 1 236
## 7660 https://udn.com/news/story/6809/4702067 充當 1 236
## 7661 https://udn.com/news/story/6809/4702067 凸顯 1 236
## 7662 https://udn.com/news/story/6809/4702067 加強 1 236
## 7663 https://udn.com/news/story/6809/4702067 可能 1 236
## 7664 https://udn.com/news/story/6809/4702067 布置 1 236
## 7665 https://udn.com/news/story/6809/4702067 平台 1 236
## 7666 https://udn.com/news/story/6809/4702067 民兵 1 236
## 7667 https://udn.com/news/story/6809/4702067 民族主義 1 236
## 7668 https://udn.com/news/story/6809/4702067 交通 1 236
## 7669 https://udn.com/news/story/6809/4702067 仲裁 1 236
## 7670 https://udn.com/news/story/6809/4702067 企圖 1 236
## 7671 https://udn.com/news/story/6809/4702067 全球 1 236
## 7672 https://udn.com/news/story/6809/4702067 合作 1 236
## 7673 https://udn.com/news/story/6809/4702067 合法 1 236
## 7674 https://udn.com/news/story/6809/4702067 多處 1 236
## 7675 https://udn.com/news/story/6809/4702067 成為 1 236
## 7676 https://udn.com/news/story/6809/4702067 行徑 1 236
## 7677 https://udn.com/news/story/6809/4702067 利用 1 236
## 7678 https://udn.com/news/story/6809/4702067 助卿 1 236
## 7679 https://udn.com/news/story/6809/4702067 扼住 1 236
## 7680 https://udn.com/news/story/6809/4702067 沒有 1 236
## 7681 https://udn.com/news/story/6809/4702067 亞太 1 236
## 7682 https://udn.com/news/story/6809/4702067 協助 1 236
## 7683 https://udn.com/news/story/6809/4702067 官員 1 236
## 7684 https://udn.com/news/story/6809/4702067 所在 1 236
## 7685 https://udn.com/news/story/6809/4702067 東南亞 1 236
## 7686 https://udn.com/news/story/6809/4702067 法律 1 236
## 7687 https://udn.com/news/story/6809/4702067 注意 1 236
## 7688 https://udn.com/news/story/6809/4702067 爭端 1 236
## 7689 https://udn.com/news/story/6809/4702067 社會 1 236
## 7690 https://udn.com/news/story/6809/4702067 空間 1 236
## 7691 https://udn.com/news/story/6809/4702067 長期 1 236
## 7692 https://udn.com/news/story/6809/4702067 非法 1 236
## 7693 https://udn.com/news/story/6809/4702067 保持 1 236
## 7694 https://udn.com/news/story/6809/4702067 保護 1 236
## 7695 https://udn.com/news/story/6809/4702067 帝國主義 1 236
## 7696 https://udn.com/news/story/6809/4702067 持續 1 236
## 7697 https://udn.com/news/story/6809/4702067 施加 1 236
## 7698 https://udn.com/news/story/6809/4702067 是否 1 236
## 7699 https://udn.com/news/story/6809/4702067 疫情 1 236
## 7700 https://udn.com/news/story/6809/4702067 研究 1 236
## 7701 https://udn.com/news/story/6809/4702067 計算 1 236
## 7702 https://udn.com/news/story/6809/4702067 軍事基地 1 236
## 7703 https://udn.com/news/story/6809/4702067 軍演 1 236
## 7704 https://udn.com/news/story/6809/4702067 恐嚇 1 236
## 7705 https://udn.com/news/story/6809/4702067 效力 1 236
## 7706 https://udn.com/news/story/6809/4702067 根本 1 236
## 7707 https://udn.com/news/story/6809/4702067 涉入 1 236
## 7708 https://udn.com/news/story/6809/4702067 特徵 1 236
## 7709 https://udn.com/news/story/6809/4702067 脅迫 1 236
## 7710 https://udn.com/news/story/6809/4702067 針對 1 236
## 7711 https://udn.com/news/story/6809/4702067 馬克思列寧主義 1 236
## 7712 https://udn.com/news/story/6809/4702067 乾旱 1 236
## 7713 https://udn.com/news/story/6809/4702067 參加 1 236
## 7714 https://udn.com/news/story/6809/4702067 問到 1 236
## 7715 https://udn.com/news/story/6809/4702067 國務卿 1 236
## 7716 https://udn.com/news/story/6809/4702067 執行 1 236
## 7717 https://udn.com/news/story/6809/4702067 強化 1 236
## 7718 https://udn.com/news/story/6809/4702067 強迫 1 236
## 7719 https://udn.com/news/story/6809/4702067 掀起 1 236
## 7720 https://udn.com/news/story/6809/4702067 淡化 1 236
## 7721 https://udn.com/news/story/6809/4702067 統治 1 236
## 7722 https://udn.com/news/story/6809/4702067 透過 1 236
## 7723 https://udn.com/news/story/6809/4702067 這是 1 236
## 7724 https://udn.com/news/story/6809/4702067 喜馬拉雅山 1 236
## 7725 https://udn.com/news/story/6809/4702067 惡意 1 236
## 7726 https://udn.com/news/story/6809/4702067 提升 1 236
## 7727 https://udn.com/news/story/6809/4702067 敦促 1 236
## 7728 https://udn.com/news/story/6809/4702067 智庫 1 236
## 7729 https://udn.com/news/story/6809/4702067 最終 1 236
## 7730 https://udn.com/news/story/6809/4702067 最新 1 236
## 7731 https://udn.com/news/story/6809/4702067 無論是 1 236
## 7732 https://udn.com/news/story/6809/4702067 發布 1 236
## 7733 https://udn.com/news/story/6809/4702067 華府 1 236
## 7734 https://udn.com/news/story/6809/4702067 菲律賓 1 236
## 7735 https://udn.com/news/story/6809/4702067 開發 1 236
## 7736 https://udn.com/news/story/6809/4702067 傷害 1 236
## 7737 https://udn.com/news/story/6809/4702067 意圖 1 236
## 7738 https://udn.com/news/story/6809/4702067 意願 1 236
## 7739 https://udn.com/news/story/6809/4702067 感受 1 236
## 7740 https://udn.com/news/story/6809/4702067 準備 1 236
## 7741 https://udn.com/news/story/6809/4702067 當地 1 236
## 7742 https://udn.com/news/story/6809/4702067 當然 1 236
## 7743 https://udn.com/news/story/6809/4702067 盟友 1 236
## 7744 https://udn.com/news/story/6809/4702067 資源 1 236
## 7745 https://udn.com/news/story/6809/4702067 遊戲規則 1 236
## 7746 https://udn.com/news/story/6809/4702067 圖表 1 236
## 7747 https://udn.com/news/story/6809/4702067 實際上 1 236
## 7748 https://udn.com/news/story/6809/4702067 認為 1 236
## 7749 https://udn.com/news/story/6809/4702067 德國 1 236
## 7750 https://udn.com/news/story/6809/4702067 數飆 1 236
## 7751 https://udn.com/news/story/6809/4702067 確診 1 236
## 7752 https://udn.com/news/story/6809/4702067 戰略 1 236
## 7753 https://udn.com/news/story/6809/4702067 擁有 1 236
## 7754 https://udn.com/news/story/6809/4702067 澳洲 1 236
## 7755 https://udn.com/news/story/6809/4702067 遵守 1 236
## 7756 https://udn.com/news/story/6809/4702067 隨時 1 236
## 7757 https://udn.com/news/story/6809/4702067 壓力 1 236
## 7758 https://udn.com/news/story/6809/4702067 幫助 1 236
## 7759 https://udn.com/news/story/6809/4702067 環境 1 236
## 7760 https://udn.com/news/story/6809/4702067 聯繫 1 236
## 7761 https://udn.com/news/story/6809/4702067 聲稱 1 236
## 7762 https://udn.com/news/story/6809/4702067 舉辦 1 236
## 7763 https://udn.com/news/story/6809/4702067 講座 1 236
## 7764 https://udn.com/news/story/6809/4702067 擴張 1 236
## 7765 https://udn.com/news/story/6809/4702067 離岸 1 236
## 7766 https://udn.com/news/story/6809/4702067 龐培 1 236
## 7767 https://udn.com/news/story/6809/4702067 警戒 1 236
## 7768 https://udn.com/news/story/6809/4702067 贏得 1 236
## 7769 https://udn.com/news/story/6809/4702067 權利 1 236
## 7770 https://udn.com/news/story/6809/4702067 鑽井 1 236
## 7771 https://udn.com/news/story/6809/4702142 一次 1 248
## 7772 https://udn.com/news/story/6809/4702142 千萬 1 248
## 7773 https://udn.com/news/story/6809/4702142 大學 1 248
## 7774 https://udn.com/news/story/6809/4702142 川普 1 248
## 7775 https://udn.com/news/story/6809/4702142 川普因 1 248
## 7776 https://udn.com/news/story/6809/4702142 不力 1 248
## 7777 https://udn.com/news/story/6809/4702142 不在 1 248
## 7778 https://udn.com/news/story/6809/4702142 不是 1 248
## 7779 https://udn.com/news/story/6809/4702142 中選 1 248
## 7780 https://udn.com/news/story/6809/4702142 互相衝突 1 248
## 7781 https://udn.com/news/story/6809/4702142 今年 1 248
## 7782 https://udn.com/news/story/6809/4702142 升高 1 248
## 7783 https://udn.com/news/story/6809/4702142 反對 1 248
## 7784 https://udn.com/news/story/6809/4702142 巴馬 1 248
## 7785 https://udn.com/news/story/6809/4702142 支持 1 248
## 7786 https://udn.com/news/story/6809/4702142 加強 1 248
## 7787 https://udn.com/news/story/6809/4702142 包括 1 248
## 7788 https://udn.com/news/story/6809/4702142 古舉倫 1 248
## 7789 https://udn.com/news/story/6809/4702142 台灣 1 248
## 7790 https://udn.com/news/story/6809/4702142 必須 1 248
## 7791 https://udn.com/news/story/6809/4702142 未來 1 248
## 7792 https://udn.com/news/story/6809/4702142 正式 1 248
## 7793 https://udn.com/news/story/6809/4702142 民主黨 1 248
## 7794 https://udn.com/news/story/6809/4702142 永遠 1 248
## 7795 https://udn.com/news/story/6809/4702142 目前 1 248
## 7796 https://udn.com/news/story/6809/4702142 石油 1 248
## 7797 https://udn.com/news/story/6809/4702142 全球 1 248
## 7798 https://udn.com/news/story/6809/4702142 共同 1 248
## 7799 https://udn.com/news/story/6809/4702142 地區 1 248
## 7800 https://udn.com/news/story/6809/4702142 此際 1 248
## 7801 https://udn.com/news/story/6809/4702142 作法 1 248
## 7802 https://udn.com/news/story/6809/4702142 告別 1 248
## 7803 https://udn.com/news/story/6809/4702142 尾隨 1 248
## 7804 https://udn.com/news/story/6809/4702142 批評 1 248
## 7805 https://udn.com/news/story/6809/4702142 更常 1 248
## 7806 https://udn.com/news/story/6809/4702142 更進一步 1 248
## 7807 https://udn.com/news/story/6809/4702142 汶萊 1 248
## 7808 https://udn.com/news/story/6809/4702142 防禦 1 248
## 7809 https://udn.com/news/story/6809/4702142 並未 1 248
## 7810 https://udn.com/news/story/6809/4702142 兩艘 1 248
## 7811 https://udn.com/news/story/6809/4702142 制裁 1 248
## 7812 https://udn.com/news/story/6809/4702142 周邊 1 248
## 7813 https://udn.com/news/story/6809/4702142 呼籲 1 248
## 7814 https://udn.com/news/story/6809/4702142 和平解決 1 248
## 7815 https://udn.com/news/story/6809/4702142 官方 1 248
## 7816 https://udn.com/news/story/6809/4702142 定期 1 248
## 7817 https://udn.com/news/story/6809/4702142 所謂 1 248
## 7818 https://udn.com/news/story/6809/4702142 拒絕 1 248
## 7819 https://udn.com/news/story/6809/4702142 東協 1 248
## 7820 https://udn.com/news/story/6809/4702142 爭議 1 248
## 7821 https://udn.com/news/story/6809/4702142 表現 1 248
## 7822 https://udn.com/news/story/6809/4702142 附近 1 248
## 7823 https://udn.com/news/story/6809/4702142 保護 1 248
## 7824 https://udn.com/news/story/6809/4702142 拜登 1 248
## 7825 https://udn.com/news/story/6809/4702142 指出 1 248
## 7826 https://udn.com/news/story/6809/4702142 挑戰 1 248
## 7827 https://udn.com/news/story/6809/4702142 疫情 1 248
## 7828 https://udn.com/news/story/6809/4702142 軍力 1 248
## 7829 https://udn.com/news/story/6809/4702142 軍演 1 248
## 7830 https://udn.com/news/story/6809/4702142 軍艦 1 248
## 7831 https://udn.com/news/story/6809/4702142 展現 1 248
## 7832 https://udn.com/news/story/6809/4702142 島嶼 1 248
## 7833 https://udn.com/news/story/6809/4702142 海軍 1 248
## 7834 https://udn.com/news/story/6809/4702142 特拉 1 248
## 7835 https://udn.com/news/story/6809/4702142 紐約時報 1 248
## 7836 https://udn.com/news/story/6809/4702142 針對 1 248
## 7837 https://udn.com/news/story/6809/4702142 做生意 1 248
## 7838 https://udn.com/news/story/6809/4702142 動作 1 248
## 7839 https://udn.com/news/story/6809/4702142 國務卿 1 248
## 7840 https://udn.com/news/story/6809/4702142 國營 1 248
## 7841 https://udn.com/news/story/6809/4702142 執行 1 248
## 7842 https://udn.com/news/story/6809/4702142 將視 1 248
## 7843 https://udn.com/news/story/6809/4702142 強硬 1 248
## 7844 https://udn.com/news/story/6809/4702142 教授 1 248
## 7845 https://udn.com/news/story/6809/4702142 條約 1 248
## 7846 https://udn.com/news/story/6809/4702142 軟弱 1 248
## 7847 https://udn.com/news/story/6809/4702142 這類 1 248
## 7848 https://udn.com/news/story/6809/4702142 通常 1 248
## 7849 https://udn.com/news/story/6809/4702142 連任 1 248
## 7850 https://udn.com/news/story/6809/4702142 報導 1 248
## 7851 https://udn.com/news/story/6809/4702142 最新 1 248
## 7852 https://udn.com/news/story/6809/4702142 發表意見 1 248
## 7853 https://udn.com/news/story/6809/4702142 發表聲明 1 248
## 7854 https://udn.com/news/story/6809/4702142 策略 1 248
## 7855 https://udn.com/news/story/6809/4702142 越南 1 248
## 7856 https://udn.com/news/story/6809/4702142 進行 1 248
## 7857 https://udn.com/news/story/6809/4702142 勢力範圍 1 248
## 7858 https://udn.com/news/story/6809/4702142 新冠肺炎 1 248
## 7859 https://udn.com/news/story/6809/4702142 違法 1 248
## 7860 https://udn.com/news/story/6809/4702142 飽受 1 248
## 7861 https://udn.com/news/story/6809/4702142 圖表 1 248
## 7862 https://udn.com/news/story/6809/4702142 對手 1 248
## 7863 https://udn.com/news/story/6809/4702142 對抗 1 248
## 7864 https://udn.com/news/story/6809/4702142 漁船 1 248
## 7865 https://udn.com/news/story/6809/4702142 認定 1 248
## 7866 https://udn.com/news/story/6809/4702142 數飆 1 248
## 7867 https://udn.com/news/story/6809/4702142 確診 1 248
## 7868 https://udn.com/news/story/6809/4702142 衝突 1 248
## 7869 https://udn.com/news/story/6809/4702142 憲法 1 248
## 7870 https://udn.com/news/story/6809/4702142 機會 1 248
## 7871 https://udn.com/news/story/6809/4702142 選在 1 248
## 7872 https://udn.com/news/story/6809/4702142 霍夫斯 1 248
## 7873 https://udn.com/news/story/6809/4702142 頻率 1 248
## 7874 https://udn.com/news/story/6809/4702142 總統大選 1 248
## 7875 https://udn.com/news/story/6809/4702142 聲索方 1 248
## 7876 https://udn.com/news/story/6809/4702142 擴張 1 248
## 7877 https://udn.com/news/story/6809/4702142 簽訂 1 248
## 7878 https://udn.com/news/story/6809/4702142 邊站 1 248
## 7879 https://udn.com/news/story/6809/4702142 競選 1 248
## 7880 https://udn.com/news/story/6809/4702142 騷擾 1 248
## 7881 https://udn.com/news/story/6809/4702142 顯得 1 248
## 7882 https://udn.com/news/story/6809/4702638 一天 1 245
## 7883 https://udn.com/news/story/6809/4702638 一次 1 245
## 7884 https://udn.com/news/story/6809/4702638 千萬 1 245
## 7885 https://udn.com/news/story/6809/4702638 大部分 1 245
## 7886 https://udn.com/news/story/6809/4702638 不受 1 245
## 7887 https://udn.com/news/story/6809/4702638 不應 1 245
## 7888 https://udn.com/news/story/6809/4702638 公約 1 245
## 7889 https://udn.com/news/story/6809/4702638 世界 1 245
## 7890 https://udn.com/news/story/6809/4702638 世紀 1 245
## 7891 https://udn.com/news/story/6809/4702638 主權 1 245
## 7892 https://udn.com/news/story/6809/4702638 以來 1 245
## 7893 https://udn.com/news/story/6809/4702638 任何人 1 245
## 7894 https://udn.com/news/story/6809/4702638 全世界 1 245
## 7895 https://udn.com/news/story/6809/4702638 全部 1 245
## 7896 https://udn.com/news/story/6809/4702638 共同 1 245
## 7897 https://udn.com/news/story/6809/4702638 合法 1 245
## 7898 https://udn.com/news/story/6809/4702638 合理 1 245
## 7899 https://udn.com/news/story/6809/4702638 存在 1 245
## 7900 https://udn.com/news/story/6809/4702638 自由貿易 1 245
## 7901 https://udn.com/news/story/6809/4702638 自由權 1 245
## 7902 https://udn.com/news/story/6809/4702638 至關重要 1 245
## 7903 https://udn.com/news/story/6809/4702638 行動 1 245
## 7904 https://udn.com/news/story/6809/4702638 作戰 1 245
## 7905 https://udn.com/news/story/6809/4702638 每天 1 245
## 7906 https://udn.com/news/story/6809/4702638 汶萊 1 245
## 7907 https://udn.com/news/story/6809/4702638 享有 1 245
## 7908 https://udn.com/news/story/6809/4702638 使用 1 245
## 7909 https://udn.com/news/story/6809/4702638 受限制 1 245
## 7910 https://udn.com/news/story/6809/4702638 所有人 1 245
## 7911 https://udn.com/news/story/6809/4702638 承認 1 245
## 7912 https://udn.com/news/story/6809/4702638 承擔 1 245
## 7913 https://udn.com/news/story/6809/4702638 拉爾 1 245
## 7914 https://udn.com/news/story/6809/4702638 放棄 1 245
## 7915 https://udn.com/news/story/6809/4702638 沿岸 1 245
## 7916 https://udn.com/news/story/6809/4702638 社會 1 245
## 7917 https://udn.com/news/story/6809/4702638 阻礙 1 245
## 7918 https://udn.com/news/story/6809/4702638 附近 1 245
## 7919 https://udn.com/news/story/6809/4702638 非法 1 245
## 7920 https://udn.com/news/story/6809/4702638 促進 1 245
## 7921 https://udn.com/news/story/6809/4702638 南沙 1 245
## 7922 https://udn.com/news/story/6809/4702638 帝國 1 245
## 7923 https://udn.com/news/story/6809/4702638 持續 1 245
## 7924 https://udn.com/news/story/6809/4702638 指出 1 245
## 7925 https://udn.com/news/story/6809/4702638 挑戰 1 245
## 7926 https://udn.com/news/story/6809/4702638 是否 1 245
## 7927 https://udn.com/news/story/6809/4702638 疫情 1 245
## 7928 https://udn.com/news/story/6809/4702638 相近 1 245
## 7929 https://udn.com/news/story/6809/4702638 美軍 1 245
## 7930 https://udn.com/news/story/6809/4702638 要求 1 245
## 7931 https://udn.com/news/story/6809/4702638 軍隊 1 245
## 7932 https://udn.com/news/story/6809/4702638 限制 1 245
## 7933 https://udn.com/news/story/6809/4702638 原則 1 245
## 7934 https://udn.com/news/story/6809/4702638 時間 1 245
## 7935 https://udn.com/news/story/6809/4702638 海洋法 1 245
## 7936 https://udn.com/news/story/6809/4702638 秩序 1 245
## 7937 https://udn.com/news/story/6809/4702638 脅迫 1 245
## 7938 https://udn.com/news/story/6809/4702638 馬來西亞 1 245
## 7939 https://udn.com/news/story/6809/4702638 商業活動 1 245
## 7940 https://udn.com/news/story/6809/4702638 國務卿 1 245
## 7941 https://udn.com/news/story/6809/4702638 執行 1 245
## 7942 https://udn.com/news/story/6809/4702638 堅持 1 245
## 7943 https://udn.com/news/story/6809/4702638 密切合作 1 245
## 7944 https://udn.com/news/story/6809/4702638 將在 1 245
## 7945 https://udn.com/news/story/6809/4702638 強加 1 245
## 7946 https://udn.com/news/story/6809/4702638 情況 1 245
## 7947 https://udn.com/news/story/6809/4702638 授權 1 245
## 7948 https://udn.com/news/story/6809/4702638 理念 1 245
## 7949 https://udn.com/news/story/6809/4702638 第七 1 245
## 7950 https://udn.com/news/story/6809/4702638 船舶 1 245
## 7951 https://udn.com/news/story/6809/4702638 許可 1 245
## 7952 https://udn.com/news/story/6809/4702638 透過 1 245
## 7953 https://udn.com/news/story/6809/4702638 這對 1 245
## 7954 https://udn.com/news/story/6809/4702638 造成 1 245
## 7955 https://udn.com/news/story/6809/4702638 部分 1 245
## 7956 https://udn.com/news/story/6809/4702638 單方面 1 245
## 7957 https://udn.com/news/story/6809/4702638 提供 1 245
## 7958 https://udn.com/news/story/6809/4702638 最新 1 245
## 7959 https://udn.com/news/story/6809/4702638 森號 1 245
## 7960 https://udn.com/news/story/6809/4702638 發表 1 245
## 7961 https://udn.com/news/story/6809/4702638 菲律賓 1 245
## 7962 https://udn.com/news/story/6809/4702638 視為 1 245
## 7963 https://udn.com/news/story/6809/4702638 超過 1 245
## 7964 https://udn.com/news/story/6809/4702638 進行 1 245
## 7965 https://udn.com/news/story/6809/4702638 開放 1 245
## 7966 https://udn.com/news/story/6809/4702638 當下 1 245
## 7967 https://udn.com/news/story/6809/4702638 盟友 1 245
## 7968 https://udn.com/news/story/6809/4702638 經濟 1 245
## 7969 https://udn.com/news/story/6809/4702638 群島 1 245
## 7970 https://udn.com/news/story/6809/4702638 資源 1 245
## 7971 https://udn.com/news/story/6809/4702638 圖表 1 245
## 7972 https://udn.com/news/story/6809/4702638 夥伴 1 245
## 7973 https://udn.com/news/story/6809/4702638 對此 1 245
## 7974 https://udn.com/news/story/6809/4702638 福強 1 245
## 7975 https://udn.com/news/story/6809/4702638 維護 1 245
## 7976 https://udn.com/news/story/6809/4702638 廣泛 1 245
## 7977 https://udn.com/news/story/6809/4702638 數飆 1 245
## 7978 https://udn.com/news/story/6809/4702638 確診 1 245
## 7979 https://udn.com/news/story/6809/4702638 請求 1 245
## 7980 https://udn.com/news/story/6809/4702638 機會 1 245
## 7981 https://udn.com/news/story/6809/4702638 獲得 1 245
## 7982 https://udn.com/news/story/6809/4702638 聲明 1 245
## 7983 https://udn.com/news/story/6809/4702638 藉由 1 245
## 7984 https://udn.com/news/story/6809/4702638 離岸 1 245
## 7985 https://udn.com/news/story/6809/4702638 穩定 1 245
## 7986 https://udn.com/news/story/6809/4702638 證明 1 245
## 7987 https://udn.com/news/story/6809/4702638 龐培 1 245
## 7988 https://udn.com/news/story/6809/4702638 繼續 1 245
## 7989 https://udn.com/news/story/6809/4702638 艦隊 1 245
## 7990 https://udn.com/news/story/6809/4702638 驅逐艦 1 245
## 7991 https://udn.com/news/story/6809/4707133 一次 1 101
## 7992 https://udn.com/news/story/6809/4707133 一直 1 101
## 7993 https://udn.com/news/story/6809/4707133 一致 1 101
## 7994 https://udn.com/news/story/6809/4707133 一起 1 101
## 7995 https://udn.com/news/story/6809/4707133 千萬 1 101
## 7996 https://udn.com/news/story/6809/4707133 今天 1 101
## 7997 https://udn.com/news/story/6809/4707133 主張 1 101
## 7998 https://udn.com/news/story/6809/4707133 主權 1 101
## 7999 https://udn.com/news/story/6809/4707133 先前 1 101
## 8000 https://udn.com/news/story/6809/4707133 全球 1 101
## 8001 https://udn.com/news/story/6809/4707133 回應 1 101
## 8002 https://udn.com/news/story/6809/4707133 多邊 1 101
## 8003 https://udn.com/news/story/6809/4707133 存在 1 101
## 8004 https://udn.com/news/story/6809/4707133 行動 1 101
## 8005 https://udn.com/news/story/6809/4707133 告訴 1 101
## 8006 https://udn.com/news/story/6809/4707133 坎培拉 1 101
## 8007 https://udn.com/news/story/6809/4707133 巡邏 1 101
## 8008 https://udn.com/news/story/6809/4707133 法律 1 101
## 8009 https://udn.com/news/story/6809/4707133 表示 1 101
## 8010 https://udn.com/news/story/6809/4707133 侵犯 1 101
## 8011 https://udn.com/news/story/6809/4707133 指出 1 101
## 8012 https://udn.com/news/story/6809/4707133 昨天 1 101
## 8013 https://udn.com/news/story/6809/4707133 是否 1 101
## 8014 https://udn.com/news/story/6809/4707133 疫情 1 101
## 8015 https://udn.com/news/story/6809/4707133 軍事 1 101
## 8016 https://udn.com/news/story/6809/4707133 重要 1 101
## 8017 https://udn.com/news/story/6809/4707133 倡議 1 101
## 8018 https://udn.com/news/story/6809/4707133 海軍 1 101
## 8019 https://udn.com/news/story/6809/4707133 航道 1 101
## 8020 https://udn.com/news/story/6809/4707133 記者 1 101
## 8021 https://udn.com/news/story/6809/4707133 記者會 1 101
## 8022 https://udn.com/news/story/6809/4707133 問及 1 101
## 8023 https://udn.com/news/story/6809/4707133 國家 1 101
## 8024 https://udn.com/news/story/6809/4707133 國務卿 1 101
## 8025 https://udn.com/news/story/6809/4707133 執行 1 101
## 8026 https://udn.com/news/story/6809/4707133 堅決 1 101
## 8027 https://udn.com/news/story/6809/4707133 強化 1 101
## 8028 https://udn.com/news/story/6809/4707133 強調 1 101
## 8029 https://udn.com/news/story/6809/4707133 船艦 1 101
## 8030 https://udn.com/news/story/6809/4707133 透過 1 101
## 8031 https://udn.com/news/story/6809/4707133 途徑 1 101
## 8032 https://udn.com/news/story/6809/4707133 報導 1 101
## 8033 https://udn.com/news/story/6809/4707133 提倡 1 101
## 8034 https://udn.com/news/story/6809/4707133 最新 1 101
## 8035 https://udn.com/news/story/6809/4707133 貿易 1 101
## 8036 https://udn.com/news/story/6809/4707133 路透社 1 101
## 8037 https://udn.com/news/story/6809/4707133 圖表 1 101
## 8038 https://udn.com/news/story/6809/4707133 認為 1 101
## 8039 https://udn.com/news/story/6809/4707133 數飆 1 101
## 8040 https://udn.com/news/story/6809/4707133 確診 1 101
## 8041 https://udn.com/news/story/6809/4707133 蓬佩奧 1 101
## 8042 https://udn.com/news/story/6809/4707133 論壇 1 101
## 8043 https://udn.com/news/story/6809/4707133 總理 1 101
## 8044 https://udn.com/news/story/6809/4707133 聲明 1 101
## 8045 https://udn.com/news/story/6809/4709443 一直 1 761
## 8046 https://udn.com/news/story/6809/4709443 一條 1 761
## 8047 https://udn.com/news/story/6809/4709443 一連串 1 761
## 8048 https://udn.com/news/story/6809/4709443 一項 1 761
## 8049 https://udn.com/news/story/6809/4709443 一種 1 761
## 8050 https://udn.com/news/story/6809/4709443 一篇 1 761
## 8051 https://udn.com/news/story/6809/4709443 人士 1 761
## 8052 https://udn.com/news/story/6809/4709443 三艘 1 761
## 8053 https://udn.com/news/story/6809/4709443 上任 1 761
## 8054 https://udn.com/news/story/6809/4709443 也僅 1 761
## 8055 https://udn.com/news/story/6809/4709443 千萬 1 761
## 8056 https://udn.com/news/story/6809/4709443 士兵 1 761
## 8057 https://udn.com/news/story/6809/4709443 大多 1 761
## 8058 https://udn.com/news/story/6809/4709443 大國 1 761
## 8059 https://udn.com/news/story/6809/4709443 小時 1 761
## 8060 https://udn.com/news/story/6809/4709443 川普 1 761
## 8061 https://udn.com/news/story/6809/4709443 已經 1 761
## 8062 https://udn.com/news/story/6809/4709443 干預 1 761
## 8063 https://udn.com/news/story/6809/4709443 不可 1 761
## 8064 https://udn.com/news/story/6809/4709443 不可避免 1 761
## 8065 https://udn.com/news/story/6809/4709443 不是 1 761
## 8066 https://udn.com/news/story/6809/4709443 不能 1 761
## 8067 https://udn.com/news/story/6809/4709443 不應 1 761
## 8068 https://udn.com/news/story/6809/4709443 中止 1 761
## 8069 https://udn.com/news/story/6809/4709443 中印 1 761
## 8070 https://udn.com/news/story/6809/4709443 之中 1 761
## 8071 https://udn.com/news/story/6809/4709443 之後 1 761
## 8072 https://udn.com/news/story/6809/4709443 之高史 1 761
## 8073 https://udn.com/news/story/6809/4709443 之際 1 761
## 8074 https://udn.com/news/story/6809/4709443 今年 1 761
## 8075 https://udn.com/news/story/6809/4709443 今年以來 1 761
## 8076 https://udn.com/news/story/6809/4709443 允許 1 761
## 8077 https://udn.com/news/story/6809/4709443 公開 1 761
## 8078 https://udn.com/news/story/6809/4709443 分別 1 761
## 8079 https://udn.com/news/story/6809/4709443 分攤 1 761
## 8080 https://udn.com/news/story/6809/4709443 切勿 1 761
## 8081 https://udn.com/news/story/6809/4709443 太平洋 1 761
## 8082 https://udn.com/news/story/6809/4709443 少見 1 761
## 8083 https://udn.com/news/story/6809/4709443 手段 1 761
## 8084 https://udn.com/news/story/6809/4709443 文章 1 761
## 8085 https://udn.com/news/story/6809/4709443 方面 1 761
## 8086 https://udn.com/news/story/6809/4709443 日韓 1 761
## 8087 https://udn.com/news/story/6809/4709443 月底 1 761
## 8088 https://udn.com/news/story/6809/4709443 比川普 1 761
## 8089 https://udn.com/news/story/6809/4709443 世界 1 761
## 8090 https://udn.com/news/story/6809/4709443 主任 1 761
## 8091 https://udn.com/news/story/6809/4709443 主題 1 761
## 8092 https://udn.com/news/story/6809/4709443 付出 1 761
## 8093 https://udn.com/news/story/6809/4709443 以來 1 761
## 8094 https://udn.com/news/story/6809/4709443 出口 1 761
## 8095 https://udn.com/news/story/6809/4709443 出自 1 761
## 8096 https://udn.com/news/story/6809/4709443 出動 1 761
## 8097 https://udn.com/news/story/6809/4709443 加入 1 761
## 8098 https://udn.com/news/story/6809/4709443 北約 1 761
## 8099 https://udn.com/news/story/6809/4709443 去年 1 761
## 8100 https://udn.com/news/story/6809/4709443 只能 1 761
## 8101 https://udn.com/news/story/6809/4709443 可用 1 761
## 8102 https://udn.com/news/story/6809/4709443 台列嶼 1 761
## 8103 https://udn.com/news/story/6809/4709443 台到 1 761
## 8104 https://udn.com/news/story/6809/4709443 台海 1 761
## 8105 https://udn.com/news/story/6809/4709443 外交事務 1 761
## 8106 https://udn.com/news/story/6809/4709443 市議會 1 761
## 8107 https://udn.com/news/story/6809/4709443 必修 1 761
## 8108 https://udn.com/news/story/6809/4709443 必須 1 761
## 8109 https://udn.com/news/story/6809/4709443 打算 1 761
## 8110 https://udn.com/news/story/6809/4709443 未來 1 761
## 8111 https://udn.com/news/story/6809/4709443 未經 1 761
## 8112 https://udn.com/news/story/6809/4709443 本文 1 761
## 8113 https://udn.com/news/story/6809/4709443 正式 1 761
## 8114 https://udn.com/news/story/6809/4709443 正是 1 761
## 8115 https://udn.com/news/story/6809/4709443 目前 1 761
## 8116 https://udn.com/news/story/6809/4709443 石垣 1 761
## 8117 https://udn.com/news/story/6809/4709443 示警 1 761
## 8118 https://udn.com/news/story/6809/4709443 立刻 1 761
## 8119 https://udn.com/news/story/6809/4709443 立場 1 761
## 8120 https://udn.com/news/story/6809/4709443 仲裁者 1 761
## 8121 https://udn.com/news/story/6809/4709443 任由 1 761
## 8122 https://udn.com/news/story/6809/4709443 先前 1 761
## 8123 https://udn.com/news/story/6809/4709443 光環 1 761
## 8124 https://udn.com/news/story/6809/4709443 全世界 1 761
## 8125 https://udn.com/news/story/6809/4709443 全球 1 761
## 8126 https://udn.com/news/story/6809/4709443 印尼 1 761
## 8127 https://udn.com/news/story/6809/4709443 印度 1 761
## 8128 https://udn.com/news/story/6809/4709443 印象 1 761
## 8129 https://udn.com/news/story/6809/4709443 合法 1 761
## 8130 https://udn.com/news/story/6809/4709443 合法性 1 761
## 8131 https://udn.com/news/story/6809/4709443 同一 1 761
## 8132 https://udn.com/news/story/6809/4709443 同意 1 761
## 8133 https://udn.com/news/story/6809/4709443 名為 1 761
## 8134 https://udn.com/news/story/6809/4709443 向來 1 761
## 8135 https://udn.com/news/story/6809/4709443 回應 1 761
## 8136 https://udn.com/news/story/6809/4709443 因應 1 761
## 8137 https://udn.com/news/story/6809/4709443 多名 1 761
## 8138 https://udn.com/news/story/6809/4709443 多次 1 761
## 8139 https://udn.com/news/story/6809/4709443 多家 1 761
## 8140 https://udn.com/news/story/6809/4709443 安全 1 761
## 8141 https://udn.com/news/story/6809/4709443 尖閣 1 761
## 8142 https://udn.com/news/story/6809/4709443 年來 1 761
## 8143 https://udn.com/news/story/6809/4709443 有用 1 761
## 8144 https://udn.com/news/story/6809/4709443 有限 1 761
## 8145 https://udn.com/news/story/6809/4709443 有效 1 761
## 8146 https://udn.com/news/story/6809/4709443 自制 1 761
## 8147 https://udn.com/news/story/6809/4709443 行政區 1 761
## 8148 https://udn.com/news/story/6809/4709443 但作 1 761
## 8149 https://udn.com/news/story/6809/4709443 住址 1 761
## 8150 https://udn.com/news/story/6809/4709443 作者 1 761
## 8151 https://udn.com/news/story/6809/4709443 克制 1 761
## 8152 https://udn.com/news/story/6809/4709443 即日起 1 761
## 8153 https://udn.com/news/story/6809/4709443 否定 1 761
## 8154 https://udn.com/news/story/6809/4709443 告訴 1 761
## 8155 https://udn.com/news/story/6809/4709443 困難重重 1 761
## 8156 https://udn.com/news/story/6809/4709443 完全 1 761
## 8157 https://udn.com/news/story/6809/4709443 局勢 1 761
## 8158 https://udn.com/news/story/6809/4709443 希望 1 761
## 8159 https://udn.com/news/story/6809/4709443 批判 1 761
## 8160 https://udn.com/news/story/6809/4709443 抗爭 1 761
## 8161 https://udn.com/news/story/6809/4709443 改為 1 761
## 8162 https://udn.com/news/story/6809/4709443 更為 1 761
## 8163 https://udn.com/news/story/6809/4709443 李國盛 1 761
## 8164 https://udn.com/news/story/6809/4709443 決策 1 761
## 8165 https://udn.com/news/story/6809/4709443 沖繩縣 1 761
## 8166 https://udn.com/news/story/6809/4709443 角色 1 761
## 8167 https://udn.com/news/story/6809/4709443 走向 1 761
## 8168 https://udn.com/news/story/6809/4709443 足以 1 761
## 8169 https://udn.com/news/story/6809/4709443 身上 1 761
## 8170 https://udn.com/news/story/6809/4709443 那項 1 761
## 8171 https://udn.com/news/story/6809/4709443 防衛 1 761
## 8172 https://udn.com/news/story/6809/4709443 事務 1 761
## 8173 https://udn.com/news/story/6809/4709443 事實上 1 761
## 8174 https://udn.com/news/story/6809/4709443 使用 1 761
## 8175 https://udn.com/news/story/6809/4709443 來到 1 761
## 8176 https://udn.com/news/story/6809/4709443 例子 1 761
## 8177 https://udn.com/news/story/6809/4709443 依據 1 761
## 8178 https://udn.com/news/story/6809/4709443 兩大 1 761
## 8179 https://udn.com/news/story/6809/4709443 兩位 1 761
## 8180 https://udn.com/news/story/6809/4709443 兩個 1 761
## 8181 https://udn.com/news/story/6809/4709443 兩國關係 1 761
## 8182 https://udn.com/news/story/6809/4709443 兩艘 1 761
## 8183 https://udn.com/news/story/6809/4709443 制裁 1 761
## 8184 https://udn.com/news/story/6809/4709443 協議 1 761
## 8185 https://udn.com/news/story/6809/4709443 受到 1 761
## 8186 https://udn.com/news/story/6809/4709443 周延 1 761
## 8187 https://udn.com/news/story/6809/4709443 周邊國家 1 761
## 8188 https://udn.com/news/story/6809/4709443 呼應 1 761
## 8189 https://udn.com/news/story/6809/4709443 坦誠 1 761
## 8190 https://udn.com/news/story/6809/4709443 拒絕接受 1 761
## 8191 https://udn.com/news/story/6809/4709443 東亞 1 761
## 8192 https://udn.com/news/story/6809/4709443 法庭 1 761
## 8193 https://udn.com/news/story/6809/4709443 爭端 1 761
## 8194 https://udn.com/news/story/6809/4709443 爭議性 1 761
## 8195 https://udn.com/news/story/6809/4709443 狀況 1 761
## 8196 https://udn.com/news/story/6809/4709443 社會 1 761
## 8197 https://udn.com/news/story/6809/4709443 空中 1 761
## 8198 https://udn.com/news/story/6809/4709443 近海 1 761
## 8199 https://udn.com/news/story/6809/4709443 近期 1 761
## 8200 https://udn.com/news/story/6809/4709443 附近 1 761
## 8201 https://udn.com/news/story/6809/4709443 侵略 1 761
## 8202 https://udn.com/news/story/6809/4709443 保護 1 761
## 8203 https://udn.com/news/story/6809/4709443 前一刻 1 761
## 8204 https://udn.com/news/story/6809/4709443 前面 1 761
## 8205 https://udn.com/news/story/6809/4709443 南中國海 1 761
## 8206 https://udn.com/news/story/6809/4709443 威嚇 1 761
## 8207 https://udn.com/news/story/6809/4709443 宣布 1 761
## 8208 https://udn.com/news/story/6809/4709443 帝國 1 761
## 8209 https://udn.com/news/story/6809/4709443 待遇 1 761
## 8210 https://udn.com/news/story/6809/4709443 思考 1 761
## 8211 https://udn.com/news/story/6809/4709443 拜登 1 761
## 8212 https://udn.com/news/story/6809/4709443 持續 1 761
## 8213 https://udn.com/news/story/6809/4709443 指責 1 761
## 8214 https://udn.com/news/story/6809/4709443 政治 1 761
## 8215 https://udn.com/news/story/6809/4709443 政策 1 761
## 8216 https://udn.com/news/story/6809/4709443 政權 1 761
## 8217 https://udn.com/news/story/6809/4709443 施行 1 761
## 8218 https://udn.com/news/story/6809/4709443 是否 1 761
## 8219 https://udn.com/news/story/6809/4709443 柔性 1 761
## 8220 https://udn.com/news/story/6809/4709443 相反 1 761
## 8221 https://udn.com/news/story/6809/4709443 紀錄 1 761
## 8222 https://udn.com/news/story/6809/4709443 紅線 1 761
## 8223 https://udn.com/news/story/6809/4709443 美方 1 761
## 8224 https://udn.com/news/story/6809/4709443 英文 1 761
## 8225 https://udn.com/news/story/6809/4709443 要求 1 761
## 8226 https://udn.com/news/story/6809/4709443 負責 1 761
## 8227 https://udn.com/news/story/6809/4709443 軍費 1 761
## 8228 https://udn.com/news/story/6809/4709443 軍艦 1 761
## 8229 https://udn.com/news/story/6809/4709443 重視 1 761
## 8230 https://udn.com/news/story/6809/4709443 重新 1 761
## 8231 https://udn.com/news/story/6809/4709443 面對 1 761
## 8232 https://udn.com/news/story/6809/4709443 風雲 1 761
## 8233 https://udn.com/news/story/6809/4709443 首次 1 761
## 8234 https://udn.com/news/story/6809/4709443 修復 1 761
## 8235 https://udn.com/news/story/6809/4709443 候選人 1 761
## 8236 https://udn.com/news/story/6809/4709443 值得 1 761
## 8237 https://udn.com/news/story/6809/4709443 剛剛 1 761
## 8238 https://udn.com/news/story/6809/4709443 原本 1 761
## 8239 https://udn.com/news/story/6809/4709443 原因 1 761
## 8240 https://udn.com/news/story/6809/4709443 容忍 1 761
## 8241 https://udn.com/news/story/6809/4709443 容易 1 761
## 8242 https://udn.com/news/story/6809/4709443 時代 1 761
## 8243 https://udn.com/news/story/6809/4709443 時報 1 761
## 8244 https://udn.com/news/story/6809/4709443 根本 1 761
## 8245 https://udn.com/news/story/6809/4709443 海牙國際法庭 1 761
## 8246 https://udn.com/news/story/6809/4709443 海警 1 761
## 8247 https://udn.com/news/story/6809/4709443 涉及 1 761
## 8248 https://udn.com/news/story/6809/4709443 特別 1 761
## 8249 https://udn.com/news/story/6809/4709443 特殊 1 761
## 8250 https://udn.com/news/story/6809/4709443 留給 1 761
## 8251 https://udn.com/news/story/6809/4709443 神經 1 761
## 8252 https://udn.com/news/story/6809/4709443 秩序 1 761
## 8253 https://udn.com/news/story/6809/4709443 純粹 1 761
## 8254 https://udn.com/news/story/6809/4709443 航空母艦 1 761
## 8255 https://udn.com/news/story/6809/4709443 訊息 1 761
## 8256 https://udn.com/news/story/6809/4709443 訊號 1 761
## 8257 https://udn.com/news/story/6809/4709443 起歐 1 761
## 8258 https://udn.com/news/story/6809/4709443 退場 1 761
## 8259 https://udn.com/news/story/6809/4709443 陣線 1 761
## 8260 https://udn.com/news/story/6809/4709443 高點 1 761
## 8261 https://udn.com/news/story/6809/4709443 停止 1 761
## 8262 https://udn.com/news/story/6809/4709443 停火 1 761
## 8263 https://udn.com/news/story/6809/4709443 動作 1 761
## 8264 https://udn.com/news/story/6809/4709443 動態 1 761
## 8265 https://udn.com/news/story/6809/4709443 國內 1 761
## 8266 https://udn.com/news/story/6809/4709443 國有化 1 761
## 8267 https://udn.com/news/story/6809/4709443 國際事務 1 761
## 8268 https://udn.com/news/story/6809/4709443 國際法 1 761
## 8269 https://udn.com/news/story/6809/4709443 執行 1 761
## 8270 https://udn.com/news/story/6809/4709443 執行者 1 761
## 8271 https://udn.com/news/story/6809/4709443 執政 1 761
## 8272 https://udn.com/news/story/6809/4709443 堅持 1 761
## 8273 https://udn.com/news/story/6809/4709443 將以 1 761
## 8274 https://udn.com/news/story/6809/4709443 將和 1 761
## 8275 https://udn.com/news/story/6809/4709443 將是 1 761
## 8276 https://udn.com/news/story/6809/4709443 將會 1 761
## 8277 https://udn.com/news/story/6809/4709443 將認 1 761
## 8278 https://udn.com/news/story/6809/4709443 強大 1 761
## 8279 https://udn.com/news/story/6809/4709443 強調 1 761
## 8280 https://udn.com/news/story/6809/4709443 從中 1 761
## 8281 https://udn.com/news/story/6809/4709443 從來不 1 761
## 8282 https://udn.com/news/story/6809/4709443 情勢 1 761
## 8283 https://udn.com/news/story/6809/4709443 採取 1 761
## 8284 https://udn.com/news/story/6809/4709443 接下來 1 761
## 8285 https://udn.com/news/story/6809/4709443 接近 1 761
## 8286 https://udn.com/news/story/6809/4709443 控制 1 761
## 8287 https://udn.com/news/story/6809/4709443 敏感 1 761
## 8288 https://udn.com/news/story/6809/4709443 教訓 1 761
## 8289 https://udn.com/news/story/6809/4709443 清楚 1 761
## 8290 https://udn.com/news/story/6809/4709443 牽動 1 761
## 8291 https://udn.com/news/story/6809/4709443 現在 1 761
## 8292 https://udn.com/news/story/6809/4709443 莫迪 1 761
## 8293 https://udn.com/news/story/6809/4709443 設備 1 761
## 8294 https://udn.com/news/story/6809/4709443 部分 1 761
## 8295 https://udn.com/news/story/6809/4709443 善待 1 761
## 8296 https://udn.com/news/story/6809/4709443 喪命 1 761
## 8297 https://udn.com/news/story/6809/4709443 單純 1 761
## 8298 https://udn.com/news/story/6809/4709443 報復 1 761
## 8299 https://udn.com/news/story/6809/4709443 媒體 1 761
## 8300 https://udn.com/news/story/6809/4709443 就算 1 761
## 8301 https://udn.com/news/story/6809/4709443 就讓 1 761
## 8302 https://udn.com/news/story/6809/4709443 幾次 1 761
## 8303 https://udn.com/news/story/6809/4709443 幾個 1 761
## 8304 https://udn.com/news/story/6809/4709443 提到 1 761
## 8305 https://udn.com/news/story/6809/4709443 提醒 1 761
## 8306 https://udn.com/news/story/6809/4709443 揮兵 1 761
## 8307 https://udn.com/news/story/6809/4709443 曾經 1 761
## 8308 https://udn.com/news/story/6809/4709443 最長 1 761
## 8309 https://udn.com/news/story/6809/4709443 最新 1 761
## 8310 https://udn.com/news/story/6809/4709443 殘留 1 761
## 8311 https://udn.com/news/story/6809/4709443 測試 1 761
## 8312 https://udn.com/news/story/6809/4709443 無法 1 761
## 8313 https://udn.com/news/story/6809/4709443 無疑 1 761
## 8314 https://udn.com/news/story/6809/4709443 發言 1 761
## 8315 https://udn.com/news/story/6809/4709443 發表聲明 1 761
## 8316 https://udn.com/news/story/6809/4709443 稍微 1 761
## 8317 https://udn.com/news/story/6809/4709443 等國 1 761
## 8318 https://udn.com/news/story/6809/4709443 絕對 1 761
## 8319 https://udn.com/news/story/6809/4709443 給予 1 761
## 8320 https://udn.com/news/story/6809/4709443 華盛頓 1 761
## 8321 https://udn.com/news/story/6809/4709443 菲律賓 1 761
## 8322 https://udn.com/news/story/6809/4709443 著歐 1 761
## 8323 https://udn.com/news/story/6809/4709443 裁定 1 761
## 8324 https://udn.com/news/story/6809/4709443 超過 1 761
## 8325 https://udn.com/news/story/6809/4709443 週一 1 761
## 8326 https://udn.com/news/story/6809/4709443 進軍 1 761
## 8327 https://udn.com/news/story/6809/4709443 進逼 1 761
## 8328 https://udn.com/news/story/6809/4709443 傳達 1 761
## 8329 https://udn.com/news/story/6809/4709443 僅僅只是 1 761
## 8330 https://udn.com/news/story/6809/4709443 想要 1 761
## 8331 https://udn.com/news/story/6809/4709443 愈來愈 1 761
## 8332 https://udn.com/news/story/6809/4709443 意外 1 761
## 8333 https://udn.com/news/story/6809/4709443 意志 1 761
## 8334 https://udn.com/news/story/6809/4709443 意見 1 761
## 8335 https://udn.com/news/story/6809/4709443 感到 1 761
## 8336 https://udn.com/news/story/6809/4709443 感冒 1 761
## 8337 https://udn.com/news/story/6809/4709443 新冠 1 761
## 8338 https://udn.com/news/story/6809/4709443 會議 1 761
## 8339 https://udn.com/news/story/6809/4709443 極權 1 761
## 8340 https://udn.com/news/story/6809/4709443 溫和 1 761
## 8341 https://udn.com/news/story/6809/4709443 當年 1 761
## 8342 https://udn.com/news/story/6809/4709443 當作 1 761
## 8343 https://udn.com/news/story/6809/4709443 當然 1 761
## 8344 https://udn.com/news/story/6809/4709443 禁止 1 761
## 8345 https://udn.com/news/story/6809/4709443 詭譎 1 761
## 8346 https://udn.com/news/story/6809/4709443 資深 1 761
## 8347 https://udn.com/news/story/6809/4709443 資源 1 761
## 8348 https://udn.com/news/story/6809/4709443 跟進 1 761
## 8349 https://udn.com/news/story/6809/4709443 跨越 1 761
## 8350 https://udn.com/news/story/6809/4709443 達到 1 761
## 8351 https://udn.com/news/story/6809/4709443 違反 1 761
## 8352 https://udn.com/news/story/6809/4709443 圖表 1 761
## 8353 https://udn.com/news/story/6809/4709443 實力 1 761
## 8354 https://udn.com/news/story/6809/4709443 對台 1 761
## 8355 https://udn.com/news/story/6809/4709443 態度 1 761
## 8356 https://udn.com/news/story/6809/4709443 滯留 1 761
## 8357 https://udn.com/news/story/6809/4709443 演習 1 761
## 8358 https://udn.com/news/story/6809/4709443 疑慮 1 761
## 8359 https://udn.com/news/story/6809/4709443 管管 1 761
## 8360 https://udn.com/news/story/6809/4709443 網站 1 761
## 8361 https://udn.com/news/story/6809/4709443 緊密 1 761
## 8362 https://udn.com/news/story/6809/4709443 舞台 1 761
## 8363 https://udn.com/news/story/6809/4709443 認定 1 761
## 8364 https://udn.com/news/story/6809/4709443 誤認 1 761
## 8365 https://udn.com/news/story/6809/4709443 遠見 1 761
## 8366 https://udn.com/news/story/6809/4709443 領先 1 761
## 8367 https://udn.com/news/story/6809/4709443 領域 1 761
## 8368 https://udn.com/news/story/6809/4709443 領導人 1 761
## 8369 https://udn.com/news/story/6809/4709443 領導者 1 761
## 8370 https://udn.com/news/story/6809/4709443 寫下 1 761
## 8371 https://udn.com/news/story/6809/4709443 撰文 1 761
## 8372 https://udn.com/news/story/6809/4709443 數飆 1 761
## 8373 https://udn.com/news/story/6809/4709443 歐洲 1 761
## 8374 https://udn.com/news/story/6809/4709443 歐美 1 761
## 8375 https://udn.com/news/story/6809/4709443 歐盟 1 761
## 8376 https://udn.com/news/story/6809/4709443 熱區 1 761
## 8377 https://udn.com/news/story/6809/4709443 確診 1 761
## 8378 https://udn.com/news/story/6809/4709443 課堂 1 761
## 8379 https://udn.com/news/story/6809/4709443 調齊 1 761
## 8380 https://udn.com/news/story/6809/4709443 餘力 1 761
## 8381 https://udn.com/news/story/6809/4709443 學到 1 761
## 8382 https://udn.com/news/story/6809/4709443 學者 1 761
## 8383 https://udn.com/news/story/6809/4709443 戰事 1 761
## 8384 https://udn.com/news/story/6809/4709443 戰場 1 761
## 8385 https://udn.com/news/story/6809/4709443 戰機 1 761
## 8386 https://udn.com/news/story/6809/4709443 擔心 1 761
## 8387 https://udn.com/news/story/6809/4709443 激進 1 761
## 8388 https://udn.com/news/story/6809/4709443 激辯 1 761
## 8389 https://udn.com/news/story/6809/4709443 興趣缺缺 1 761
## 8390 https://udn.com/news/story/6809/4709443 頻率 1 761
## 8391 https://udn.com/news/story/6809/4709443 頻傳 1 761
## 8392 https://udn.com/news/story/6809/4709443 頻頻 1 761
## 8393 https://udn.com/news/story/6809/4709443 優先 1 761
## 8394 https://udn.com/news/story/6809/4709443 總理 1 761
## 8395 https://udn.com/news/story/6809/4709443 總統大選 1 761
## 8396 https://udn.com/news/story/6809/4709443 聯合國 1 761
## 8397 https://udn.com/news/story/6809/4709443 擴張 1 761
## 8398 https://udn.com/news/story/6809/4709443 藉由 1 761
## 8399 https://udn.com/news/story/6809/4709443 謹慎 1 761
## 8400 https://udn.com/news/story/6809/4709443 轉軟 1 761
## 8401 https://udn.com/news/story/6809/4709443 轉載 1 761
## 8402 https://udn.com/news/story/6809/4709443 雜誌 1 761
## 8403 https://udn.com/news/story/6809/4709443 壞事 1 761
## 8404 https://udn.com/news/story/6809/4709443 懷念 1 761
## 8405 https://udn.com/news/story/6809/4709443 爆發 1 761
## 8406 https://udn.com/news/story/6809/4709443 關心 1 761
## 8407 https://udn.com/news/story/6809/4709443 難以 1 761
## 8408 https://udn.com/news/story/6809/4709443 勸導 1 761
## 8409 https://udn.com/news/story/6809/4709443 繼續 1 761
## 8410 https://udn.com/news/story/6809/4709443 警告 1 761
## 8411 https://udn.com/news/story/6809/4709443 釋出 1 761
## 8412 https://udn.com/news/story/6809/4709443 鐵腕 1 761
## 8413 https://udn.com/news/story/6809/4709443 霸權 1 761
## 8414 https://udn.com/news/story/6809/4709443 讀過 1 761
## 8415 https://udn.com/news/story/6809/4709443 驚覺 1 761
## 8416 https://udn.com/news/story/6809/4709443 讓步 1 761
## 8417 https://udn.com/news/story/6809/4709443 觀點 1 761
## 8418 https://udn.com/news/story/6809/4724267 一架 1 192
## 8419 https://udn.com/news/story/6809/4724267 一款 1 192
## 8420 https://udn.com/news/story/6809/4724267 大關 1 192
## 8421 https://udn.com/news/story/6809/4724267 不治 1 192
## 8422 https://udn.com/news/story/6809/4724267 不規則 1 192
## 8423 https://udn.com/news/story/6809/4724267 中方 1 192
## 8424 https://udn.com/news/story/6809/4724267 中共 1 192
## 8425 https://udn.com/news/story/6809/4724267 內有 1 192
## 8426 https://udn.com/news/story/6809/4724267 公司 1 192
## 8427 https://udn.com/news/story/6809/4724267 分別 1 192
## 8428 https://udn.com/news/story/6809/4724267 升級 1 192
## 8429 https://udn.com/news/story/6809/4724267 反潛巡邏機 1 192
## 8430 https://udn.com/news/story/6809/4724267 巴士海峽 1 192
## 8431 https://udn.com/news/story/6809/4724267 引用 1 192
## 8432 https://udn.com/news/story/6809/4724267 日至 1 192
## 8433 https://udn.com/news/story/6809/4724267 日則 1 192
## 8434 https://udn.com/news/story/6809/4724267 主要用途 1 192
## 8435 https://udn.com/news/story/6809/4724267 出動 1 192
## 8436 https://udn.com/news/story/6809/4724267 出現 1 192
## 8437 https://udn.com/news/story/6809/4724267 另有 1 192
## 8438 https://udn.com/news/story/6809/4724267 外有 1 192
## 8439 https://udn.com/news/story/6809/4724267 生產 1 192
## 8440 https://udn.com/news/story/6809/4724267 用於 1 192
## 8441 https://udn.com/news/story/6809/4724267 目標 1 192
## 8442 https://udn.com/news/story/6809/4724267 先前 1 192
## 8443 https://udn.com/news/story/6809/4724267 全球 1 192
## 8444 https://udn.com/news/story/6809/4724267 同樣 1 192
## 8445 https://udn.com/news/story/6809/4724267 向西 1 192
## 8446 https://udn.com/news/story/6809/4724267 在此之前 1 192
## 8447 https://udn.com/news/story/6809/4724267 有所 1 192
## 8448 https://udn.com/news/story/6809/4724267 西太平洋 1 192
## 8449 https://udn.com/news/story/6809/4724267 巡航 1 192
## 8450 https://udn.com/news/story/6809/4724267 快速 1 192
## 8451 https://udn.com/news/story/6809/4724267 折返 1 192
## 8452 https://udn.com/news/story/6809/4724267 更是 1 192
## 8453 https://udn.com/news/story/6809/4724267 並未 1 192
## 8454 https://udn.com/news/story/6809/4724267 取代 1 192
## 8455 https://udn.com/news/story/6809/4724267 官媒 1 192
## 8456 https://udn.com/news/story/6809/4724267 拉曼 1 192
## 8457 https://udn.com/news/story/6809/4724267 拉塔 1 192
## 8458 https://udn.com/news/story/6809/4724267 沿海 1 192
## 8459 https://udn.com/news/story/6809/4724267 波音公司 1 192
## 8460 https://udn.com/news/story/6809/4724267 版本 1 192
## 8461 https://udn.com/news/story/6809/4724267 表示 1 192
## 8462 https://udn.com/news/story/6809/4724267 近海 1 192
## 8463 https://udn.com/news/story/6809/4724267 則是 1 192
## 8464 https://udn.com/news/story/6809/4724267 前往 1 192
## 8465 https://udn.com/news/story/6809/4724267 持續 1 192
## 8466 https://udn.com/news/story/6809/4724267 派出 1 192
## 8467 https://udn.com/news/story/6809/4724267 派遣 1 192
## 8468 https://udn.com/news/story/6809/4724267 突破 1 192
## 8469 https://udn.com/news/story/6809/4724267 美國空軍 1 192
## 8470 https://udn.com/news/story/6809/4724267 飛往 1 192
## 8471 https://udn.com/news/story/6809/4724267 個彈 1 192
## 8472 https://udn.com/news/story/6809/4724267 海面 1 192
## 8473 https://udn.com/news/story/6809/4724267 海域 1 192
## 8474 https://udn.com/news/story/6809/4724267 訊號 1 192
## 8475 https://udn.com/news/story/6809/4724267 訓練 1 192
## 8476 https://udn.com/news/story/6809/4724267 起飛 1 192
## 8477 https://udn.com/news/story/6809/4724267 偵查 1 192
## 8478 https://udn.com/news/story/6809/4724267 基地 1 192
## 8479 https://udn.com/news/story/6809/4724267 常規 1 192
## 8480 https://udn.com/news/story/6809/4724267 掛點 1 192
## 8481 https://udn.com/news/story/6809/4724267 接連 1 192
## 8482 https://udn.com/news/story/6809/4724267 這架 1 192
## 8483 https://udn.com/news/story/6809/4724267 魚雷 1 192
## 8484 https://udn.com/news/story/6809/4724267 報導 1 192
## 8485 https://udn.com/news/story/6809/4724267 提及 1 192
## 8486 https://udn.com/news/story/6809/4724267 斯洛普格 1 192
## 8487 https://udn.com/news/story/6809/4724267 結構 1 192
## 8488 https://udn.com/news/story/6809/4724267 進行 1 192
## 8489 https://udn.com/news/story/6809/4724267 傳感器 1 192
## 8490 https://udn.com/news/story/6809/4724267 新一代 1 192
## 8491 https://udn.com/news/story/6809/4724267 新冠肺炎 1 192
## 8492 https://udn.com/news/story/6809/4724267 萬人 1 192
## 8493 https://udn.com/news/story/6809/4724267 資訊 1 192
## 8494 https://udn.com/news/story/6809/4724267 路徑 1 192
## 8495 https://udn.com/news/story/6809/4724267 圖表 1 192
## 8496 https://udn.com/news/story/6809/4724267 實施 1 192
## 8497 https://udn.com/news/story/6809/4724267 數據 1 192
## 8498 https://udn.com/news/story/6809/4724267 確診 1 192
## 8499 https://udn.com/news/story/6809/4724267 戰術 1 192
## 8500 https://udn.com/news/story/6809/4724267 機型 1 192
## 8501 https://udn.com/news/story/6809/4724267 頻繁 1 192
## 8502 https://udn.com/news/story/6809/4724267 獲取 1 192
## 8503 https://udn.com/news/story/6809/4724267 環球網 1 192
## 8504 https://udn.com/news/story/6809/4724267 隸屬於 1 192
## 8505 https://udn.com/news/story/6809/4724267 韓國 1 192
## 8506 https://udn.com/news/story/6809/4724267 舊型 1 192
## 8507 https://udn.com/news/story/6809/4724267 蹤跡 1 192
## 8508 https://udn.com/news/story/6809/4724267 艦機 1 192
## 8509 https://udn.com/news/story/6809/4724267 驅逐艦 1 192
## 8510 https://udn.com/news/story/6809/4734809 一項 1 54
## 8511 https://udn.com/news/story/6809/4734809 大陸 1 54
## 8512 https://udn.com/news/story/6809/4734809 大關 1 54
## 8513 https://udn.com/news/story/6809/4734809 不治 1 54
## 8514 https://udn.com/news/story/6809/4734809 他並 1 54
## 8515 https://udn.com/news/story/6809/4734809 只能 1 54
## 8516 https://udn.com/news/story/6809/4734809 外交 1 54
## 8517 https://udn.com/news/story/6809/4734809 仲裁 1 54
## 8518 https://udn.com/news/story/6809/4734809 全球 1 54
## 8519 https://udn.com/news/story/6809/4734809 判決 1 54
## 8520 https://udn.com/news/story/6809/4734809 別無選擇 1 54
## 8521 https://udn.com/news/story/6809/4734809 努力 1 54
## 8522 https://udn.com/news/story/6809/4734809 決定 1 54
## 8523 https://udn.com/news/story/6809/4734809 法院 1 54
## 8524 https://udn.com/news/story/6809/4734809 爭端 1 54
## 8525 https://udn.com/news/story/6809/4734809 南海 1 54
## 8526 https://udn.com/news/story/6809/4734809 咨文 1 54
## 8527 https://udn.com/news/story/6809/4734809 挑戰 1 54
## 8528 https://udn.com/news/story/6809/4734809 突破 1 54
## 8529 https://udn.com/news/story/6809/4734809 軍事 1 54
## 8530 https://udn.com/news/story/6809/4734809 海牙 1 54
## 8531 https://udn.com/news/story/6809/4734809 國情 1 54
## 8532 https://udn.com/news/story/6809/4734809 常設 1 54
## 8533 https://udn.com/news/story/6809/4734809 推動 1 54
## 8534 https://udn.com/news/story/6809/4734809 報導 1 54
## 8535 https://udn.com/news/story/6809/4734809 無法 1 54
## 8536 https://udn.com/news/story/6809/4734809 發表 1 54
## 8537 https://udn.com/news/story/6809/4734809 菲律賓 1 54
## 8538 https://udn.com/news/story/6809/4734809 新冠肺炎 1 54
## 8539 https://udn.com/news/story/6809/4734809 準備 1 54
## 8540 https://udn.com/news/story/6809/4734809 當作 1 54
## 8541 https://udn.com/news/story/6809/4734809 萬人 1 54
## 8542 https://udn.com/news/story/6809/4734809 路透 1 54
## 8543 https://udn.com/news/story/6809/4734809 圖表 1 54
## 8544 https://udn.com/news/story/6809/4734809 對待 1 54
## 8545 https://udn.com/news/story/6809/4734809 領土 1 54
## 8546 https://udn.com/news/story/6809/4734809 數據 1 54
## 8547 https://udn.com/news/story/6809/4734809 確診 1 54
## 8548 https://udn.com/news/story/6809/4734809 擁有 1 54
## 8549 https://udn.com/news/story/6809/4734809 選擇 1 54
## 8550 https://udn.com/news/story/6809/4734809 總統 1 54
## 8551 https://udn.com/news/story/6809/4734809 辯護 1 54
## 8552 https://udn.com/news/story/6809/4765714 一連串 1 270
## 8553 https://udn.com/news/story/6809/4765714 人工島 1 270
## 8554 https://udn.com/news/story/6809/4765714 大臣 1 270
## 8555 https://udn.com/news/story/6809/4765714 大家 1 270
## 8556 https://udn.com/news/story/6809/4765714 小島 1 270
## 8557 https://udn.com/news/story/6809/4765714 已經 1 270
## 8558 https://udn.com/news/story/6809/4765714 不想 1 270
## 8559 https://udn.com/news/story/6809/4765714 不會 1 270
## 8560 https://udn.com/news/story/6809/4765714 中共 1 270
## 8561 https://udn.com/news/story/6809/4765714 中國共產黨 1 270
## 8562 https://udn.com/news/story/6809/4765714 之前 1 270
## 8563 https://udn.com/news/story/6809/4765714 之後 1 270
## 8564 https://udn.com/news/story/6809/4765714 今年 1 270
## 8565 https://udn.com/news/story/6809/4765714 反應 1 270
## 8566 https://udn.com/news/story/6809/4765714 太平洋 1 270
## 8567 https://udn.com/news/story/6809/4765714 太郎 1 270
## 8568 https://udn.com/news/story/6809/4765714 尤其 1 270
## 8569 https://udn.com/news/story/6809/4765714 引起 1 270
## 8570 https://udn.com/news/story/6809/4765714 引發 1 270
## 8571 https://udn.com/news/story/6809/4765714 支持 1 270
## 8572 https://udn.com/news/story/6809/4765714 日中 1 270
## 8573 https://udn.com/news/story/6809/4765714 日本政府 1 270
## 8574 https://udn.com/news/story/6809/4765714 月底 1 270
## 8575 https://udn.com/news/story/6809/4765714 水域 1 270
## 8576 https://udn.com/news/story/6809/4765714 主權 1 270
## 8577 https://udn.com/news/story/6809/4765714 他還 1 270
## 8578 https://udn.com/news/story/6809/4765714 付出 1 270
## 8579 https://udn.com/news/story/6809/4765714 代價 1 270
## 8580 https://udn.com/news/story/6809/4765714 加大 1 270
## 8581 https://udn.com/news/story/6809/4765714 加劇 1 270
## 8582 https://udn.com/news/story/6809/4765714 包括 1 270
## 8583 https://udn.com/news/story/6809/4765714 另有 1 270
## 8584 https://udn.com/news/story/6809/4765714 台列嶼 1 270
## 8585 https://udn.com/news/story/6809/4765714 台灣 1 270
## 8586 https://udn.com/news/story/6809/4765714 全球 1 270
## 8587 https://udn.com/news/story/6809/4765714 地方 1 270
## 8588 https://udn.com/news/story/6809/4765714 安全 1 270
## 8589 https://udn.com/news/story/6809/4765714 尖閣 1 270
## 8590 https://udn.com/news/story/6809/4765714 成立 1 270
## 8591 https://udn.com/news/story/6809/4765714 有權 1 270
## 8592 https://udn.com/news/story/6809/4765714 此刻 1 270
## 8593 https://udn.com/news/story/6809/4765714 死亡 1 270
## 8594 https://udn.com/news/story/6809/4765714 考量 1 270
## 8595 https://udn.com/news/story/6809/4765714 自由 1 270
## 8596 https://udn.com/news/story/6809/4765714 行使 1 270
## 8597 https://udn.com/news/story/6809/4765714 助益 1 270
## 8598 https://udn.com/news/story/6809/4765714 局勢 1 270
## 8599 https://udn.com/news/story/6809/4765714 改造 1 270
## 8600 https://udn.com/news/story/6809/4765714 改變 1 270
## 8601 https://udn.com/news/story/6809/4765714 改變現狀 1 270
## 8602 https://udn.com/news/story/6809/4765714 更是如此 1 270
## 8603 https://udn.com/news/story/6809/4765714 更糟 1 270
## 8604 https://udn.com/news/story/6809/4765714 沙洲 1 270
## 8605 https://udn.com/news/story/6809/4765714 那裡 1 270
## 8606 https://udn.com/news/story/6809/4765714 防衛 1 270
## 8607 https://udn.com/news/story/6809/4765714 防禦 1 270
## 8608 https://udn.com/news/story/6809/4765714 並無 1 270
## 8609 https://udn.com/news/story/6809/4765714 來說 1 270
## 8610 https://udn.com/news/story/6809/4765714 兩國 1 270
## 8611 https://udn.com/news/story/6809/4765714 具體 1 270
## 8612 https://udn.com/news/story/6809/4765714 呼籲 1 270
## 8613 https://udn.com/news/story/6809/4765714 承諾 1 270
## 8614 https://udn.com/news/story/6809/4765714 東南亞 1 270
## 8615 https://udn.com/news/story/6809/4765714 武力 1 270
## 8616 https://udn.com/news/story/6809/4765714 武器 1 270
## 8617 https://udn.com/news/story/6809/4765714 武器庫 1 270
## 8618 https://udn.com/news/story/6809/4765714 爭議 1 270
## 8619 https://udn.com/news/story/6809/4765714 表現 1 270
## 8620 https://udn.com/news/story/6809/4765714 近期 1 270
## 8621 https://udn.com/news/story/6809/4765714 阻止 1 270
## 8622 https://udn.com/news/story/6809/4765714 阿斯 1 270
## 8623 https://udn.com/news/story/6809/4765714 附近 1 270
## 8624 https://udn.com/news/story/6809/4765714 非常 1 270
## 8625 https://udn.com/news/story/6809/4765714 侵略 1 270
## 8626 https://udn.com/news/story/6809/4765714 保持一致 1 270
## 8627 https://udn.com/news/story/6809/4765714 厚顏無恥 1 270
## 8628 https://udn.com/news/story/6809/4765714 威脅 1 270
## 8629 https://udn.com/news/story/6809/4765714 建立 1 270
## 8630 https://udn.com/news/story/6809/4765714 很多年 1 270
## 8631 https://udn.com/news/story/6809/4765714 恫嚇 1 270
## 8632 https://udn.com/news/story/6809/4765714 施壓力 1 270
## 8633 https://udn.com/news/story/6809/4765714 珊瑚礁 1 270
## 8634 https://udn.com/news/story/6809/4765714 研究所 1 270
## 8635 https://udn.com/news/story/6809/4765714 美國有線電視新聞網 1 270
## 8636 https://udn.com/news/story/6809/4765714 致力於 1 270
## 8637 https://udn.com/news/story/6809/4765714 英國 1 270
## 8638 https://udn.com/news/story/6809/4765714 計畫 1 270
## 8639 https://udn.com/news/story/6809/4765714 飛彈 1 270
## 8640 https://udn.com/news/story/6809/4765714 家人 1 270
## 8641 https://udn.com/news/story/6809/4765714 展現 1 270
## 8642 https://udn.com/news/story/6809/4765714 島上 1 270
## 8643 https://udn.com/news/story/6809/4765714 島嶼 1 270
## 8644 https://udn.com/news/story/6809/4765714 恐怕 1 270
## 8645 https://udn.com/news/story/6809/4765714 時說 1 270
## 8646 https://udn.com/news/story/6809/4765714 核武 1 270
## 8647 https://udn.com/news/story/6809/4765714 海洋 1 270
## 8648 https://udn.com/news/story/6809/4765714 海域 1 270
## 8649 https://udn.com/news/story/6809/4765714 真正 1 270
## 8650 https://udn.com/news/story/6809/4765714 破局 1 270
## 8651 https://udn.com/news/story/6809/4765714 破壞 1 270
## 8652 https://udn.com/news/story/6809/4765714 針對 1 270
## 8653 https://udn.com/news/story/6809/4765714 陣地 1 270
## 8654 https://udn.com/news/story/6809/4765714 高昂 1 270
## 8655 https://udn.com/news/story/6809/4765714 高度 1 270
## 8656 https://udn.com/news/story/6809/4765714 做出 1 270
## 8657 https://udn.com/news/story/6809/4765714 區域 1 270
## 8658 https://udn.com/news/story/6809/4765714 國防部長 1 270
## 8659 https://udn.com/news/story/6809/4765714 國家 1 270
## 8660 https://udn.com/news/story/6809/4765714 帶來 1 270
## 8661 https://udn.com/news/story/6809/4765714 帶過 1 270
## 8662 https://udn.com/news/story/6809/4765714 強健 1 270
## 8663 https://udn.com/news/story/6809/4765714 情況 1 270
## 8664 https://udn.com/news/story/6809/4765714 情勢 1 270
## 8665 https://udn.com/news/story/6809/4765714 接受 1 270
## 8666 https://udn.com/news/story/6809/4765714 淡淡 1 270
## 8667 https://udn.com/news/story/6809/4765714 現狀 1 270
## 8668 https://udn.com/news/story/6809/4765714 眼前 1 270
## 8669 https://udn.com/news/story/6809/4765714 船隻 1 270
## 8670 https://udn.com/news/story/6809/4765714 莫里森 1 270
## 8671 https://udn.com/news/story/6809/4765714 被迫 1 270
## 8672 https://udn.com/news/story/6809/4765714 訪問 1 270
## 8673 https://udn.com/news/story/6809/4765714 透過 1 270
## 8674 https://udn.com/news/story/6809/4765714 這片 1 270
## 8675 https://udn.com/news/story/6809/4765714 這段 1 270
## 8676 https://udn.com/news/story/6809/4765714 這對 1 270
## 8677 https://udn.com/news/story/6809/4765714 連續 1 270
## 8678 https://udn.com/news/story/6809/4765714 部署 1 270
## 8679 https://udn.com/news/story/6809/4765714 釣魚 1 270
## 8680 https://udn.com/news/story/6809/4765714 單方面 1 270
## 8681 https://udn.com/news/story/6809/4765714 幾個 1 270
## 8682 https://udn.com/news/story/6809/4765714 惡化 1 270
## 8683 https://udn.com/news/story/6809/4765714 提出 1 270
## 8684 https://udn.com/news/story/6809/4765714 最後 1 270
## 8685 https://udn.com/news/story/6809/4765714 發生 1 270
## 8686 https://udn.com/news/story/6809/4765714 發言 1 270
## 8687 https://udn.com/news/story/6809/4765714 發揚 1 270
## 8688 https://udn.com/news/story/6809/4765714 絕對 1 270
## 8689 https://udn.com/news/story/6809/4765714 視訊 1 270
## 8690 https://udn.com/news/story/6809/4765714 超過 1 270
## 8691 https://udn.com/news/story/6809/4765714 進入 1 270
## 8692 https://udn.com/news/story/6809/4765714 進攻性 1 270
## 8693 https://udn.com/news/story/6809/4765714 開放 1 270
## 8694 https://udn.com/news/story/6809/4765714 想要 1 270
## 8695 https://udn.com/news/story/6809/4765714 意圖 1 270
## 8696 https://udn.com/news/story/6809/4765714 搞清楚 1 270
## 8697 https://udn.com/news/story/6809/4765714 當局 1 270
## 8698 https://udn.com/news/story/6809/4765714 盟友 1 270
## 8699 https://udn.com/news/story/6809/4765714 盟邦 1 270
## 8700 https://udn.com/news/story/6809/4765714 萬人 1 270
## 8701 https://udn.com/news/story/6809/4765714 萬例 1 270
## 8702 https://udn.com/news/story/6809/4765714 圖表 1 270
## 8703 https://udn.com/news/story/6809/4765714 徹底 1 270
## 8704 https://udn.com/news/story/6809/4765714 演說 1 270
## 8705 https://udn.com/news/story/6809/4765714 漠視 1 270
## 8706 https://udn.com/news/story/6809/4765714 維護 1 270
## 8707 https://udn.com/news/story/6809/4765714 綿延 1 270
## 8708 https://udn.com/news/story/6809/4765714 認為 1 270
## 8709 https://udn.com/news/story/6809/4765714 領袖 1 270
## 8710 https://udn.com/news/story/6809/4765714 憂慮 1 270
## 8711 https://udn.com/news/story/6809/4765714 數百公里 1 270
## 8712 https://udn.com/news/story/6809/4765714 數據 1 270
## 8713 https://udn.com/news/story/6809/4765714 確診 1 270
## 8714 https://udn.com/news/story/6809/4765714 衝突 1 270
## 8715 https://udn.com/news/story/6809/4765714 談判 1 270
## 8716 https://udn.com/news/story/6809/4765714 談到 1 270
## 8717 https://udn.com/news/story/6809/4765714 論壇 1 270
## 8718 https://udn.com/news/story/6809/4765714 諸島 1 270
## 8719 https://udn.com/news/story/6809/4765714 戰略 1 270
## 8720 https://udn.com/news/story/6809/4765714 戰機 1 270
## 8721 https://udn.com/news/story/6809/4765714 激起 1 270
## 8722 https://udn.com/news/story/6809/4765714 選項 1 270
## 8723 https://udn.com/news/story/6809/4765714 嚇阻 1 270
## 8724 https://udn.com/news/story/6809/4765714 總理 1 270
## 8725 https://udn.com/news/story/6809/4765714 聯合陣線 1 270
## 8726 https://udn.com/news/story/6809/4765714 聲索 1 270
## 8727 https://udn.com/news/story/6809/4765714 擴大 1 270
## 8728 https://udn.com/news/story/6809/4765714 雙邊關係 1 270
## 8729 https://udn.com/news/story/6809/4765714 穩定 1 270
## 8730 https://udn.com/news/story/6809/4765714 關注 1 270
## 8731 https://udn.com/news/story/6809/4765714 關係 1 270
## 8732 https://udn.com/news/story/6809/4765714 嚴厲 1 270
## 8733 https://udn.com/news/story/6809/4765714 覺得 1 270
## 8734 https://udn.com/news/story/6809/4765714 警告 1 270
## 8735 https://udn.com/news/story/6809/4765714 議題 1 270
## 8736 https://udn.com/news/story/6809/4765714 轟炸機 1 270
## 8737 https://udn.com/news/story/6809/4765714 權利 1 270
## 8738 https://udn.com/news/story/6809/4765714 變得 1 270
## 8739 https://udn.com/news/story/6809/4775709 一帶 1 211
## 8740 https://udn.com/news/story/6809/4775709 上談 1 211
## 8741 https://udn.com/news/story/6809/4775709 下令 1 211
## 8742 https://udn.com/news/story/6809/4775709 下達 1 211
## 8743 https://udn.com/news/story/6809/4775709 大門 1 211
## 8744 https://udn.com/news/story/6809/4775709 工作 1 211
## 8745 https://udn.com/news/story/6809/4775709 已非 1 211
## 8746 https://udn.com/news/story/6809/4775709 不至於 1 211
## 8747 https://udn.com/news/story/6809/4775709 不能 1 211
## 8748 https://udn.com/news/story/6809/4775709 不想 1 211
## 8749 https://udn.com/news/story/6809/4775709 中方 1 211
## 8750 https://udn.com/news/story/6809/4775709 中央 1 211
## 8751 https://udn.com/news/story/6809/4775709 中共 1 211
## 8752 https://udn.com/news/story/6809/4775709 中共中央政治局 1 211
## 8753 https://udn.com/news/story/6809/4775709 中美 1 211
## 8754 https://udn.com/news/story/6809/4775709 中美要 1 211
## 8755 https://udn.com/news/story/6809/4775709 中國外交部 1 211
## 8756 https://udn.com/news/story/6809/4775709 中斷 1 211
## 8757 https://udn.com/news/story/6809/4775709 仍要 1 211
## 8758 https://udn.com/news/story/6809/4775709 公開 1 211
## 8759 https://udn.com/news/story/6809/4775709 分歧 1 211
## 8760 https://udn.com/news/story/6809/4775709 升級 1 211
## 8761 https://udn.com/news/story/6809/4775709 友好 1 211
## 8762 https://udn.com/news/story/6809/4775709 日益頻繁 1 211
## 8763 https://udn.com/news/story/6809/4775709 王毅 1 211
## 8764 https://udn.com/news/story/6809/4775709 主任 1 211
## 8765 https://udn.com/news/story/6809/4775709 刊文 1 211
## 8766 https://udn.com/news/story/6809/4775709 加強 1 211
## 8767 https://udn.com/news/story/6809/4775709 另一名 1 211
## 8768 https://udn.com/news/story/6809/4775709 外交 1 211
## 8769 https://udn.com/news/story/6809/4775709 外交部長 1 211
## 8770 https://udn.com/news/story/6809/4775709 外事 1 211
## 8771 https://udn.com/news/story/6809/4775709 打擊 1 211
## 8772 https://udn.com/news/story/6809/4775709 本人 1 211
## 8773 https://udn.com/news/story/6809/4775709 玉成 1 211
## 8774 https://udn.com/news/story/6809/4775709 全球 1 211
## 8775 https://udn.com/news/story/6809/4775709 共同 1 211
## 8776 https://udn.com/news/story/6809/4775709 危險 1 211
## 8777 https://udn.com/news/story/6809/4775709 同行 1 211
## 8778 https://udn.com/news/story/6809/4775709 多方 1 211
## 8779 https://udn.com/news/story/6809/4775709 有所 1 211
## 8780 https://udn.com/news/story/6809/4775709 死亡 1 211
## 8781 https://udn.com/news/story/6809/4775709 低姿態 1 211
## 8782 https://udn.com/news/story/6809/4775709 克制 1 211
## 8783 https://udn.com/news/story/6809/4775709 告訴 1 211
## 8784 https://udn.com/news/story/6809/4775709 困難 1 211
## 8785 https://udn.com/news/story/6809/4775709 私下 1 211
## 8786 https://udn.com/news/story/6809/4775709 系統 1 211
## 8787 https://udn.com/news/story/6809/4775709 並稱 1 211
## 8788 https://udn.com/news/story/6809/4775709 兩國 1 211
## 8789 https://udn.com/news/story/6809/4775709 受訪 1 211
## 8790 https://udn.com/news/story/6809/4775709 命令 1 211
## 8791 https://udn.com/news/story/6809/4775709 始終 1 211
## 8792 https://udn.com/news/story/6809/4775709 委員 1 211
## 8793 https://udn.com/news/story/6809/4775709 委員會 1 211
## 8794 https://udn.com/news/story/6809/4775709 官方 1 211
## 8795 https://udn.com/news/story/6809/4775709 官兵 1 211
## 8796 https://udn.com/news/story/6809/4775709 抱持 1 211
## 8797 https://udn.com/news/story/6809/4775709 拒絕 1 211
## 8798 https://udn.com/news/story/6809/4775709 狀況 1 211
## 8799 https://udn.com/news/story/6809/4775709 知情 1 211
## 8800 https://udn.com/news/story/6809/4775709 表示 1 211
## 8801 https://udn.com/news/story/6809/4775709 表態 1 211
## 8802 https://udn.com/news/story/6809/4775709 近來 1 211
## 8803 https://udn.com/news/story/6809/4775709 非常 1 211
## 8804 https://udn.com/news/story/6809/4775709 姿態 1 211
## 8805 https://udn.com/news/story/6809/4775709 後果 1 211
## 8806 https://udn.com/news/story/6809/4775709 昨晚 1 211
## 8807 https://udn.com/news/story/6809/4775709 美中 1 211
## 8808 https://udn.com/news/story/6809/4775709 美機 1 211
## 8809 https://udn.com/news/story/6809/4775709 美艦 1 211
## 8810 https://udn.com/news/story/6809/4775709 軍事 1 211
## 8811 https://udn.com/news/story/6809/4775709 重啟 1 211
## 8812 https://udn.com/news/story/6809/4775709 風險 1 211
## 8813 https://udn.com/news/story/6809/4775709 首例 1 211
## 8814 https://udn.com/news/story/6809/4775709 香港 1 211
## 8815 https://udn.com/news/story/6809/4775709 值得注意 1 211
## 8816 https://udn.com/news/story/6809/4775709 家園 1 211
## 8817 https://udn.com/news/story/6809/4775709 容易 1 211
## 8818 https://udn.com/news/story/6809/4775709 拿到 1 211
## 8819 https://udn.com/news/story/6809/4775709 消息 1 211
## 8820 https://udn.com/news/story/6809/4775709 消息人士 1 211
## 8821 https://udn.com/news/story/6809/4775709 紙老虎 1 211
## 8822 https://udn.com/news/story/6809/4775709 航空母艦 1 211
## 8823 https://udn.com/news/story/6809/4775709 做好 1 211
## 8824 https://udn.com/news/story/6809/4775709 副部長 1 211
## 8825 https://udn.com/news/story/6809/4775709 區域 1 211
## 8826 https://udn.com/news/story/6809/4775709 問題 1 211
## 8827 https://udn.com/news/story/6809/4775709 國家 1 211
## 8828 https://udn.com/news/story/6809/4775709 國務委員 1 211
## 8829 https://udn.com/news/story/6809/4775709 專訪 1 211
## 8830 https://udn.com/news/story/6809/4775709 強硬 1 211
## 8831 https://udn.com/news/story/6809/4775709 接受 1 211
## 8832 https://udn.com/news/story/6809/4775709 脫鉤 1 211
## 8833 https://udn.com/news/story/6809/4775709 軟化 1 211
## 8834 https://udn.com/news/story/6809/4775709 透過 1 211
## 8835 https://udn.com/news/story/6809/4775709 透露 1 211
## 8836 https://udn.com/news/story/6809/4775709 這名 1 211
## 8837 https://udn.com/news/story/6809/4775709 敞開 1 211
## 8838 https://udn.com/news/story/6809/4775709 無法控制 1 211
## 8839 https://udn.com/news/story/6809/4775709 發言 1 211
## 8840 https://udn.com/news/story/6809/4775709 超過 1 211
## 8841 https://udn.com/news/story/6809/4775709 開展 1 211
## 8842 https://udn.com/news/story/6809/4775709 意外 1 211
## 8843 https://udn.com/news/story/6809/4775709 楊潔篪 1 211
## 8844 https://udn.com/news/story/6809/4775709 準備 1 211
## 8845 https://udn.com/news/story/6809/4775709 當今 1 211
## 8846 https://udn.com/news/story/6809/4775709 當局 1 211
## 8847 https://udn.com/news/story/6809/4775709 群稱 1 211
## 8848 https://udn.com/news/story/6809/4775709 萬人 1 211
## 8849 https://udn.com/news/story/6809/4775709 萬例 1 211
## 8850 https://udn.com/news/story/6809/4775709 解放軍 1 211
## 8851 https://udn.com/news/story/6809/4775709 圖表 1 211
## 8852 https://udn.com/news/story/6809/4775709 實際上 1 211
## 8853 https://udn.com/news/story/6809/4775709 對外 1 211
## 8854 https://udn.com/news/story/6809/4775709 對峙 1 211
## 8855 https://udn.com/news/story/6809/4775709 對美放 1 211
## 8856 https://udn.com/news/story/6809/4775709 態勢 1 211
## 8857 https://udn.com/news/story/6809/4775709 管控 1 211
## 8858 https://udn.com/news/story/6809/4775709 管道 1 211
## 8859 https://udn.com/news/story/6809/4775709 緊張 1 211
## 8860 https://udn.com/news/story/6809/4775709 誤判 1 211
## 8861 https://udn.com/news/story/6809/4775709 領域 1 211
## 8862 https://udn.com/news/story/6809/4775709 劍拔弩張 1 211
## 8863 https://udn.com/news/story/6809/4775709 增添 1 211
## 8864 https://udn.com/news/story/6809/4775709 數據 1 211
## 8865 https://udn.com/news/story/6809/4775709 確診 1 211
## 8866 https://udn.com/news/story/6809/4775709 衝突 1 211
## 8867 https://udn.com/news/story/6809/4775709 複雜 1 211
## 8868 https://udn.com/news/story/6809/4775709 戰略 1 211
## 8869 https://udn.com/news/story/6809/4775709 機會 1 211
## 8870 https://udn.com/news/story/6809/4775709 辦公室 1 211
## 8871 https://udn.com/news/story/6809/4775709 隨時 1 211
## 8872 https://udn.com/news/story/6809/4775709 頻傳 1 211
## 8873 https://udn.com/news/story/6809/4775709 避免 1 211
## 8874 https://udn.com/news/story/6809/4775709 檯面 1 211
## 8875 https://udn.com/news/story/6809/4775709 謹慎 1 211
## 8876 https://udn.com/news/story/6809/4775709 雙方 1 211
## 8877 https://udn.com/news/story/6809/4775709 關係密切 1 211
## 8878 https://udn.com/news/story/6809/4775709 鷹派 1 211
## 8879 https://udn.com/news/story/6809/4786257 大秀 1 170
## 8880 https://udn.com/news/story/6809/4786257 干擾 1 170
## 8881 https://udn.com/news/story/6809/4786257 中美關係 1 170
## 8882 https://udn.com/news/story/6809/4786257 中國 1 170
## 8883 https://udn.com/news/story/6809/4786257 中國人民解放軍 1 170
## 8884 https://udn.com/news/story/6809/4786257 互別 1 170
## 8885 https://udn.com/news/story/6809/4786257 公眾號 1 170
## 8886 https://udn.com/news/story/6809/4786257 公開 1 170
## 8887 https://udn.com/news/story/6809/4786257 升溫 1 170
## 8888 https://udn.com/news/story/6809/4786257 反潛 1 170
## 8889 https://udn.com/news/story/6809/4786257 反潛艦 1 170
## 8890 https://udn.com/news/story/6809/4786257 反應 1 170
## 8891 https://udn.com/news/story/6809/4786257 太平洋地區 1 170
## 8892 https://udn.com/news/story/6809/4786257 文章 1 170
## 8893 https://udn.com/news/story/6809/4786257 日則 1 170
## 8894 https://udn.com/news/story/6809/4786257 日指 1 170
## 8895 https://udn.com/news/story/6809/4786257 台海 1 170
## 8896 https://udn.com/news/story/6809/4786257 打擊 1 170
## 8897 https://udn.com/news/story/6809/4786257 本次 1 170
## 8898 https://udn.com/news/story/6809/4786257 正式 1 170
## 8899 https://udn.com/news/story/6809/4786257 目標 1 170
## 8900 https://udn.com/news/story/6809/4786257 全球 1 170
## 8901 https://udn.com/news/story/6809/4786257 印度 1 170
## 8902 https://udn.com/news/story/6809/4786257 合作 1 170
## 8903 https://udn.com/news/story/6809/4786257 地區 1 170
## 8904 https://udn.com/news/story/6809/4786257 死亡 1 170
## 8905 https://udn.com/news/story/6809/4786257 肌肉 1 170
## 8906 https://udn.com/news/story/6809/4786257 自由 1 170
## 8907 https://udn.com/news/story/6809/4786257 自行 1 170
## 8908 https://udn.com/news/story/6809/4786257 至關重要 1 170
## 8909 https://udn.com/news/story/6809/4786257 作戰 1 170
## 8910 https://udn.com/news/story/6809/4786257 巡航 1 170
## 8911 https://udn.com/news/story/6809/4786257 沒有 1 170
## 8912 https://udn.com/news/story/6809/4786257 防空 1 170
## 8913 https://udn.com/news/story/6809/4786257 防險 1 170
## 8914 https://udn.com/news/story/6809/4786257 並不 1 170
## 8915 https://udn.com/news/story/6809/4786257 並指 1 170
## 8916 https://udn.com/news/story/6809/4786257 兩端 1 170
## 8917 https://udn.com/news/story/6809/4786257 命中 1 170
## 8918 https://udn.com/news/story/6809/4786257 和平 1 170
## 8919 https://udn.com/news/story/6809/4786257 服役 1 170
## 8920 https://udn.com/news/story/6809/4786257 東部 1 170
## 8921 https://udn.com/news/story/6809/4786257 信號 1 170
## 8922 https://udn.com/news/story/6809/4786257 南北 1 170
## 8923 https://udn.com/news/story/6809/4786257 持續 1 170
## 8924 https://udn.com/news/story/6809/4786257 指名 1 170
## 8925 https://udn.com/news/story/6809/4786257 研發 1 170
## 8926 https://udn.com/news/story/6809/4786257 美軍 1 170
## 8927 https://udn.com/news/story/6809/4786257 苗頭 1 170
## 8928 https://udn.com/news/story/6809/4786257 軍種 1 170
## 8929 https://udn.com/news/story/6809/4786257 軍艦 1 170
## 8930 https://udn.com/news/story/6809/4786257 重返 1 170
## 8931 https://udn.com/news/story/6809/4786257 重頭戲 1 170
## 8932 https://udn.com/news/story/6809/4786257 重點 1 170
## 8933 https://udn.com/news/story/6809/4786257 飛彈 1 170
## 8934 https://udn.com/news/story/6809/4786257 香江 1 170
## 8935 https://udn.com/news/story/6809/4786257 海軍 1 170
## 8936 https://udn.com/news/story/6809/4786257 海峽 1 170
## 8937 https://udn.com/news/story/6809/4786257 消極 1 170
## 8938 https://udn.com/news/story/6809/4786257 航空母艦 1 170
## 8939 https://udn.com/news/story/6809/4786257 訓線 1 170
## 8940 https://udn.com/news/story/6809/4786257 動向 1 170
## 8941 https://udn.com/news/story/6809/4786257 問題 1 170
## 8942 https://udn.com/news/story/6809/4786257 強調 1 170
## 8943 https://udn.com/news/story/6809/4786257 情勢 1 170
## 8944 https://udn.com/news/story/6809/4786257 救生 1 170
## 8945 https://udn.com/news/story/6809/4786257 殺傷力 1 170
## 8946 https://udn.com/news/story/6809/4786257 組織 1 170
## 8947 https://udn.com/news/story/6809/4786257 連續 1 170
## 8948 https://udn.com/news/story/6809/4786257 期間 1 170
## 8949 https://udn.com/news/story/6809/4786257 發文 1 170
## 8950 https://udn.com/news/story/6809/4786257 超過 1 170
## 8951 https://udn.com/news/story/6809/4786257 開放 1 170
## 8952 https://udn.com/news/story/6809/4786257 勢力 1 170
## 8953 https://udn.com/news/story/6809/4786257 微信 1 170
## 8954 https://udn.com/news/story/6809/4786257 新一代 1 170
## 8955 https://udn.com/news/story/6809/4786257 置身事外 1 170
## 8956 https://udn.com/news/story/6809/4786257 萬人 1 170
## 8957 https://udn.com/news/story/6809/4786257 萬例 1 170
## 8958 https://udn.com/news/story/6809/4786257 資料 1 170
## 8959 https://udn.com/news/story/6809/4786257 雷根 1 170
## 8960 https://udn.com/news/story/6809/4786257 圖表 1 170
## 8961 https://udn.com/news/story/6809/4786257 夥伴 1 170
## 8962 https://udn.com/news/story/6809/4786257 實射 1 170
## 8963 https://udn.com/news/story/6809/4786257 實戰 1 170
## 8964 https://udn.com/news/story/6809/4786257 演練 1 170
## 8965 https://udn.com/news/story/6809/4786257 精準 1 170
## 8966 https://udn.com/news/story/6809/4786257 維持 1 170
## 8967 https://udn.com/news/story/6809/4786257 緊張 1 170
## 8968 https://udn.com/news/story/6809/4786257 輕武器 1 170
## 8969 https://udn.com/news/story/6809/4786257 輕型 1 170
## 8970 https://udn.com/news/story/6809/4786257 數據 1 170
## 8971 https://udn.com/news/story/6809/4786257 確保 1 170
## 8972 https://udn.com/news/story/6809/4786257 確診 1 170
## 8973 https://udn.com/news/story/6809/4786257 餘種 1 170
## 8974 https://udn.com/news/story/6809/4786257 整合 1 170
## 8975 https://udn.com/news/story/6809/4786257 聯合作戰 1 170
## 8976 https://udn.com/news/story/6809/4786257 聲明 1 170
## 8977 https://udn.com/news/story/6809/4786257 點出 1 170
## 8978 https://udn.com/news/story/6809/4786257 穩定 1 170
## 8979 https://udn.com/news/story/6809/4786257 嚴重威脅 1 170
## 8980 https://udn.com/news/story/6809/4786257 嚴重錯誤 1 170
## 8981 https://udn.com/news/story/6809/4786257 艦是 1 170
## 8982 https://udn.com/news/story/6809/4786257 護衛艦 1 170
## 8983 https://udn.com/news/story/6809/4786257 顯示 1 170
## 8984 https://udn.com/news/story/6809/4808733 一名 1 196
## 8985 https://udn.com/news/story/6809/4808733 一屆 1 196
## 8986 https://udn.com/news/story/6809/4808733 人民日報 1 196
## 8987 https://udn.com/news/story/6809/4808733 大使 1 196
## 8988 https://udn.com/news/story/6809/4808733 不同 1 196
## 8989 https://udn.com/news/story/6809/4808733 中立 1 196
## 8990 https://udn.com/news/story/6809/4808733 中旬 1 196
## 8991 https://udn.com/news/story/6809/4808733 中國政府 1 196
## 8992 https://udn.com/news/story/6809/4808733 中國籍 1 196
## 8993 https://udn.com/news/story/6809/4808733 中曾 1 196
## 8994 https://udn.com/news/story/6809/4808733 升高 1 196
## 8995 https://udn.com/news/story/6809/4808733 日起 1 196
## 8996 https://udn.com/news/story/6809/4808733 日將 1 196
## 8997 https://udn.com/news/story/6809/4808733 主要 1 196
## 8998 https://udn.com/news/story/6809/4808733 主張 1 196
## 8999 https://udn.com/news/story/6809/4808733 主管 1 196
## 9000 https://udn.com/news/story/6809/4808733 仔細 1 196
## 9001 https://udn.com/news/story/6809/4808733 他並 1 196
## 9002 https://udn.com/news/story/6809/4808733 以來 1 196
## 9003 https://udn.com/news/story/6809/4808733 台灣 1 196
## 9004 https://udn.com/news/story/6809/4808733 史達偉 1 196
## 9005 https://udn.com/news/story/6809/4808733 司法 1 196
## 9006 https://udn.com/news/story/6809/4808733 正式 1 196
## 9007 https://udn.com/news/story/6809/4808733 立於 1 196
## 9008 https://udn.com/news/story/6809/4808733 立場 1 196
## 9009 https://udn.com/news/story/6809/4808733 仲裁 1 196
## 9010 https://udn.com/news/story/6809/4808733 任期 1 196
## 9011 https://udn.com/news/story/6809/4808733 全球 1 196
## 9012 https://udn.com/news/story/6809/4808733 匈牙利 1 196
## 9013 https://udn.com/news/story/6809/4808733 年來 1 196
## 9014 https://udn.com/news/story/6809/4808733 成立 1 196
## 9015 https://udn.com/news/story/6809/4808733 成為 1 196
## 9016 https://udn.com/news/story/6809/4808733 有助 1 196
## 9017 https://udn.com/news/story/6809/4808733 有損 1 196
## 9018 https://udn.com/news/story/6809/4808733 此次 1 196
## 9019 https://udn.com/news/story/6809/4808733 自此 1 196
## 9020 https://udn.com/news/story/6809/4808733 至今 1 196
## 9021 https://udn.com/news/story/6809/4808733 助理 1 196
## 9022 https://udn.com/news/story/6809/4808733 局面 1 196
## 9023 https://udn.com/news/story/6809/4808733 批評 1 196
## 9024 https://udn.com/news/story/6809/4808733 投票權 1 196
## 9025 https://udn.com/news/story/6809/4808733 改選 1 196
## 9026 https://udn.com/news/story/6809/4808733 改變 1 196
## 9027 https://udn.com/news/story/6809/4808733 並未 1 196
## 9028 https://udn.com/news/story/6809/4808733 事務 1 196
## 9029 https://udn.com/news/story/6809/4808733 亞太 1 196
## 9030 https://udn.com/news/story/6809/4808733 兩樣 1 196
## 9031 https://udn.com/news/story/6809/4808733 官員 1 196
## 9032 https://udn.com/news/story/6809/4808733 延續 1 196
## 9033 https://udn.com/news/story/6809/4808733 歧見 1 196
## 9034 https://udn.com/news/story/6809/4808733 爭端 1 196
## 9035 https://udn.com/news/story/6809/4808733 爭議 1 196
## 9036 https://udn.com/news/story/6809/4808733 非法 1 196
## 9037 https://udn.com/news/story/6809/4808733 信號 1 196
## 9038 https://udn.com/news/story/6809/4808733 染疫 1 196
## 9039 https://udn.com/news/story/6809/4808733 段潔龍 1 196
## 9040 https://udn.com/news/story/6809/4808733 相關 1 196
## 9041 https://udn.com/news/story/6809/4808733 美中 1 196
## 9042 https://udn.com/news/story/6809/4808733 美國國務院 1 196
## 9043 https://udn.com/news/story/6809/4808733 負責 1 196
## 9044 https://udn.com/news/story/6809/4808733 首輪 1 196
## 9045 https://udn.com/news/story/6809/4808733 香港 1 196
## 9046 https://udn.com/news/story/6809/4808733 時間 1 196
## 9047 https://udn.com/news/story/6809/4808733 海洋 1 196
## 9048 https://udn.com/news/story/6809/4808733 消防 1 196
## 9049 https://udn.com/news/story/6809/4808733 國家 1 196
## 9050 https://udn.com/news/story/6809/4808733 國籍 1 196
## 9051 https://udn.com/news/story/6809/4808733 第二輪 1 196
## 9052 https://udn.com/news/story/6809/4808733 組成 1 196
## 9053 https://udn.com/news/story/6809/4808733 處理 1 196
## 9054 https://udn.com/news/story/6809/4808733 設立 1 196
## 9055 https://udn.com/news/story/6809/4808733 設在 1 196
## 9056 https://udn.com/news/story/6809/4808733 透過 1 196
## 9057 https://udn.com/news/story/6809/4808733 這次 1 196
## 9058 https://udn.com/news/story/6809/4808733 部門 1 196
## 9059 https://udn.com/news/story/6809/4808733 剩餘 1 196
## 9060 https://udn.com/news/story/6809/4808733 最新 1 196
## 9061 https://udn.com/news/story/6809/4808733 發表聲明 1 196
## 9062 https://udn.com/news/story/6809/4808733 超過 1 196
## 9063 https://udn.com/news/story/6809/4808733 進入 1 196
## 9064 https://udn.com/news/story/6809/4808733 新疆 1 196
## 9065 https://udn.com/news/story/6809/4808733 會議 1 196
## 9066 https://udn.com/news/story/6809/4808733 當地 1 196
## 9067 https://udn.com/news/story/6809/4808733 經貿 1 196
## 9068 https://udn.com/news/story/6809/4808733 萬人 1 196
## 9069 https://udn.com/news/story/6809/4808733 萬人病 1 196
## 9070 https://udn.com/news/story/6809/4808733 資格 1 196
## 9071 https://udn.com/news/story/6809/4808733 過去 1 196
## 9072 https://udn.com/news/story/6809/4808733 僱用 1 196
## 9073 https://udn.com/news/story/6809/4808733 圖表 1 196
## 9074 https://udn.com/news/story/6809/4808733 演說 1 196
## 9075 https://udn.com/news/story/6809/4808733 漢堡 1 196
## 9076 https://udn.com/news/story/6809/4808733 管理 1 196
## 9077 https://udn.com/news/story/6809/4808733 認定 1 196
## 9078 https://udn.com/news/story/6809/4808733 領域 1 196
## 9079 https://udn.com/news/story/6809/4808733 審慎考慮 1 196
## 9080 https://udn.com/news/story/6809/4808733 履職 1 196
## 9081 https://udn.com/news/story/6809/4808733 德國 1 196
## 9082 https://udn.com/news/story/6809/4808733 數據 1 196
## 9083 https://udn.com/news/story/6809/4808733 確診 1 196
## 9084 https://udn.com/news/story/6809/4808733 締約國 1 196
## 9085 https://udn.com/news/story/6809/4808733 蓬佩奧 1 196
## 9086 https://udn.com/news/story/6809/4808733 檢視 1 196
## 9087 https://udn.com/news/story/6809/4808733 縱火犯 1 196
## 9088 https://udn.com/news/story/6809/4808733 總部 1 196
## 9089 https://udn.com/news/story/6809/4808733 聯合國總部 1 196
## 9090 https://udn.com/news/story/6809/4808733 簽署 1 196
## 9091 https://udn.com/news/story/6809/4808733 議題 1 196
## 9092 https://udn.com/news/story/6809/4812685 一帶 1 292
## 9093 https://udn.com/news/story/6809/4812685 一路 1 292
## 9094 https://udn.com/news/story/6809/4812685 下屬 1 292
## 9095 https://udn.com/news/story/6809/4812685 工作 1 292
## 9096 https://udn.com/news/story/6809/4812685 工程局 1 292
## 9097 https://udn.com/news/story/6809/4812685 工業 1 292
## 9098 https://udn.com/news/story/6809/4812685 今天 1 292
## 9099 https://udn.com/news/story/6809/4812685 允許 1 292
## 9100 https://udn.com/news/story/6809/4812685 公民 1 292
## 9101 https://udn.com/news/story/6809/4812685 公頃 1 292
## 9102 https://udn.com/news/story/6809/4812685 天津 1 292
## 9103 https://udn.com/news/story/6809/4812685 主要 1 292
## 9104 https://udn.com/news/story/6809/4812685 主張 1 292
## 9105 https://udn.com/news/story/6809/4812685 加入 1 292
## 9106 https://udn.com/news/story/6809/4812685 加速 1 292
## 9107 https://udn.com/news/story/6809/4812685 包含 1 292
## 9108 https://udn.com/news/story/6809/4812685 必須 1 292
## 9109 https://udn.com/news/story/6809/4812685 正當 1 292
## 9110 https://udn.com/news/story/6809/4812685 企業 1 292
## 9111 https://udn.com/news/story/6809/4812685 全球戰略 1 292
## 9112 https://udn.com/news/story/6809/4812685 地區 1 292
## 9113 https://udn.com/news/story/6809/4812685 安全局 1 292
## 9114 https://udn.com/news/story/6809/4812685 行動 1 292
## 9115 https://udn.com/news/story/6809/4812685 西沙 1 292
## 9116 https://udn.com/news/story/6809/4812685 宏宇 1 292
## 9117 https://udn.com/news/story/6809/4812685 扮演 1 292
## 9118 https://udn.com/news/story/6809/4812685 角色 1 292
## 9119 https://udn.com/news/story/6809/4812685 取得 1 292
## 9120 https://udn.com/news/story/6809/4812685 承包商 1 292
## 9121 https://udn.com/news/story/6809/4812685 抵抗 1 292
## 9122 https://udn.com/news/story/6809/4812685 武器 1 292
## 9123 https://udn.com/news/story/6809/4812685 爭議 1 292
## 9124 https://udn.com/news/story/6809/4812685 爭議地區 1 292
## 9125 https://udn.com/news/story/6809/4812685 直到 1 292
## 9126 https://udn.com/news/story/6809/4812685 社會 1 292
## 9127 https://udn.com/news/story/6809/4812685 附近 1 292
## 9128 https://udn.com/news/story/6809/4812685 信息 1 292
## 9129 https://udn.com/news/story/6809/4812685 建立 1 292
## 9130 https://udn.com/news/story/6809/4812685 持續 1 292
## 9131 https://udn.com/news/story/6809/4812685 指定 1 292
## 9132 https://udn.com/news/story/6809/4812685 挑釁性 1 292
## 9133 https://udn.com/news/story/6809/4812685 挖掘 1 292
## 9134 https://udn.com/news/story/6809/4812685 政府 1 292
## 9135 https://udn.com/news/story/6809/4812685 染疫 1 292
## 9136 https://udn.com/news/story/6809/4812685 科技 1 292
## 9137 https://udn.com/news/story/6809/4812685 美國商務部 1 292
## 9138 https://udn.com/news/story/6809/4812685 美國國務院 1 292
## 9139 https://udn.com/news/story/6809/4812685 英畝 1 292
## 9140 https://udn.com/news/story/6809/4812685 軍演 1 292
## 9141 https://udn.com/news/story/6809/4812685 重要 1 292
## 9142 https://udn.com/news/story/6809/4812685 限制 1 292
## 9143 https://udn.com/news/story/6809/4812685 家陸方 1 292
## 9144 https://udn.com/news/story/6809/4812685 島嶼 1 292
## 9145 https://udn.com/news/story/6809/4812685 海洋工程 1 292
## 9146 https://udn.com/news/story/6809/4812685 海軍 1 292
## 9147 https://udn.com/news/story/6809/4812685 破壞性 1 292
## 9148 https://udn.com/news/story/6809/4812685 脅迫 1 292
## 9149 https://udn.com/news/story/6809/4812685 航務 1 292
## 9150 https://udn.com/news/story/6809/4812685 追究責任 1 292
## 9151 https://udn.com/news/story/6809/4812685 停止 1 292
## 9152 https://udn.com/news/story/6809/4812685 區域 1 292
## 9153 https://udn.com/news/story/6809/4812685 商務部長 1 292
## 9154 https://udn.com/news/story/6809/4812685 國務卿 1 292
## 9155 https://udn.com/news/story/6809/4812685 基地 1 292
## 9156 https://udn.com/news/story/6809/4812685 將會 1 292
## 9157 https://udn.com/news/story/6809/4812685 掠奪性 1 292
## 9158 https://udn.com/news/story/6809/4812685 採取行動 1 292
## 9159 https://udn.com/news/story/6809/4812685 疏濬 1 292
## 9160 https://udn.com/news/story/6809/4812685 第七 1 292
## 9161 https://udn.com/news/story/6809/4812685 第二 1 292
## 9162 https://udn.com/news/story/6809/4812685 第三十 1 292
## 9163 https://udn.com/news/story/6809/4812685 船舶工業 1 292
## 9164 https://udn.com/news/story/6809/4812685 設施 1 292
## 9165 https://udn.com/news/story/6809/4812685 貪汙 1 292
## 9166 https://udn.com/news/story/6809/4812685 透過 1 292
## 9167 https://udn.com/news/story/6809/4812685 這項 1 292
## 9168 https://udn.com/news/story/6809/4812685 通光 1 292
## 9169 https://udn.com/news/story/6809/4812685 通信 1 292
## 9170 https://udn.com/news/story/6809/4812685 通訊器材 1 292
## 9171 https://udn.com/news/story/6809/4812685 造成 1 292
## 9172 https://udn.com/news/story/6809/4812685 陸方為 1 292
## 9173 https://udn.com/news/story/6809/4812685 備受 1 292
## 9174 https://udn.com/news/story/6809/4812685 無法估量 1 292
## 9175 https://udn.com/news/story/6809/4812685 發出 1 292
## 9176 https://udn.com/news/story/6809/4812685 貿易 1 292
## 9177 https://udn.com/news/story/6809/4812685 開墾 1 292
## 9178 https://udn.com/news/story/6809/4812685 盟國 1 292
## 9179 https://udn.com/news/story/6809/4812685 禁止 1 292
## 9180 https://udn.com/news/story/6809/4812685 群島 1 292
## 9181 https://udn.com/news/story/6809/4812685 萬人 1 292
## 9182 https://udn.com/news/story/6809/4812685 萬人病 1 292
## 9183 https://udn.com/news/story/6809/4812685 電纜 1 292
## 9184 https://udn.com/news/story/6809/4812685 圖表 1 292
## 9185 https://udn.com/news/story/6809/4812685 腐敗 1 292
## 9186 https://udn.com/news/story/6809/4812685 領導 1 292
## 9187 https://udn.com/news/story/6809/4812685 廣有 1 292
## 9188 https://udn.com/news/story/6809/4812685 數據 1 292
## 9189 https://udn.com/news/story/6809/4812685 確診 1 292
## 9190 https://udn.com/news/story/6809/4812685 範圍 1 292
## 9191 https://udn.com/news/story/6809/4812685 踐踏 1 292
## 9192 https://udn.com/news/story/6809/4812685 融資 1 292
## 9193 https://udn.com/news/story/6809/4812685 幫助 1 292
## 9194 https://udn.com/news/story/6809/4812685 環佳 1 292
## 9195 https://udn.com/news/story/6809/4812685 擴張主義 1 292
## 9196 https://udn.com/news/story/6809/4812685 簡稱 1 292
## 9197 https://udn.com/news/story/6809/4812685 藉由 1 292
## 9198 https://udn.com/news/story/6809/4812685 簽證 1 292
## 9199 https://udn.com/news/story/6809/4812685 羅斯 1 292
## 9200 https://udn.com/news/story/6809/4812688 一份 1 130
## 9201 https://udn.com/news/story/6809/4812688 一百多 1 130
## 9202 https://udn.com/news/story/6809/4812688 大型 1 130
## 9203 https://udn.com/news/story/6809/4812688 工程 1 130
## 9204 https://udn.com/news/story/6809/4812688 中共 1 130
## 9205 https://udn.com/news/story/6809/4812688 中美 1 130
## 9206 https://udn.com/news/story/6809/4812688 今天 1 130
## 9207 https://udn.com/news/story/6809/4812688 廿四 1 130
## 9208 https://udn.com/news/story/6809/4812688 主張 1 130
## 9209 https://udn.com/news/story/6809/4812688 主權 1 130
## 9210 https://udn.com/news/story/6809/4812688 主權國家 1 130
## 9211 https://udn.com/news/story/6809/4812688 四個 1 130
## 9212 https://udn.com/news/story/6809/4812688 外交部 1 130
## 9213 https://udn.com/news/story/6809/4812688 平方公里 1 130
## 9214 https://udn.com/news/story/6809/4812688 必要 1 130
## 9215 https://udn.com/news/story/6809/4812688 必須 1 130
## 9216 https://udn.com/news/story/6809/4812688 民航機 1 130
## 9217 https://udn.com/news/story/6809/4812688 永暑島 1 130
## 9218 https://udn.com/news/story/6809/4812688 永暑礁 1 130
## 9219 https://udn.com/news/story/6809/4812688 全球 1 130
## 9220 https://udn.com/news/story/6809/4812688 列入 1 130
## 9221 https://udn.com/news/story/6809/4812688 名單 1 130
## 9222 https://udn.com/news/story/6809/4812688 作用 1 130
## 9223 https://udn.com/news/story/6809/4812688 完全 1 130
## 9224 https://udn.com/news/story/6809/4812688 防禦 1 130
## 9225 https://udn.com/news/story/6809/4812688 制裁 1 130
## 9226 https://udn.com/news/story/6809/4812688 固有 1 130
## 9227 https://udn.com/news/story/6809/4812688 官方 1 130
## 9228 https://udn.com/news/story/6809/4812688 承認 1 130
## 9229 https://udn.com/news/story/6809/4812688 油庫 1 130
## 9230 https://udn.com/news/story/6809/4812688 社會 1 130
## 9231 https://udn.com/news/story/6809/4812688 表示 1 130
## 9232 https://udn.com/news/story/6809/4812688 近年來 1 130
## 9233 https://udn.com/news/story/6809/4812688 南海諸島 1 130
## 9234 https://udn.com/news/story/6809/4812688 持續 1 130
## 9235 https://udn.com/news/story/6809/4812688 指定 1 130
## 9236 https://udn.com/news/story/6809/4812688 指責 1 130
## 9237 https://udn.com/news/story/6809/4812688 染疫 1 130
## 9238 https://udn.com/news/story/6809/4812688 美濟島 1 130
## 9239 https://udn.com/news/story/6809/4812688 美濟礁 1 130
## 9240 https://udn.com/news/story/6809/4812688 重要 1 130
## 9241 https://udn.com/news/story/6809/4812688 降落 1 130
## 9242 https://udn.com/news/story/6809/4812688 剛剛 1 130
## 9243 https://udn.com/news/story/6809/4812688 原因 1 130
## 9244 https://udn.com/news/story/6809/4812688 原是 1 130
## 9245 https://udn.com/news/story/6809/4812688 消息 1 130
## 9246 https://udn.com/news/story/6809/4812688 消息人士 1 130
## 9247 https://udn.com/news/story/6809/4812688 起飛 1 130
## 9248 https://udn.com/news/story/6809/4812688 追究責任 1 130
## 9249 https://udn.com/news/story/6809/4812688 停機坪 1 130
## 9250 https://udn.com/news/story/6809/4812688 商務部長 1 130
## 9251 https://udn.com/news/story/6809/4812688 問題 1 130
## 9252 https://udn.com/news/story/6809/4812688 國際 1 130
## 9253 https://udn.com/news/story/6809/4812688 國際法 1 130
## 9254 https://udn.com/news/story/6809/4812688 宿舍 1 130
## 9255 https://udn.com/news/story/6809/4812688 推特 1 130
## 9256 https://udn.com/news/story/6809/4812688 這一 1 130
## 9257 https://udn.com/news/story/6809/4812688 這是 1 130
## 9258 https://udn.com/news/story/6809/4812688 造島 1 130
## 9259 https://udn.com/news/story/6809/4812688 部署 1 130
## 9260 https://udn.com/news/story/6809/4812688 援引 1 130
## 9261 https://udn.com/news/story/6809/4812688 曾多次 1 130
## 9262 https://udn.com/news/story/6809/4812688 發言人 1 130
## 9263 https://udn.com/news/story/6809/4812688 發揮 1 130
## 9264 https://udn.com/news/story/6809/4812688 超過 1 130
## 9265 https://udn.com/news/story/6809/4812688 跑道 1 130
## 9266 https://udn.com/news/story/6809/4812688 開展 1 130
## 9267 https://udn.com/news/story/6809/4812688 萬人 1 130
## 9268 https://udn.com/news/story/6809/4812688 萬人病 1 130
## 9269 https://udn.com/news/story/6809/4812688 圖表 1 130
## 9270 https://udn.com/news/story/6809/4812688 實體 1 130
## 9271 https://udn.com/news/story/6809/4812688 網站 1 130
## 9272 https://udn.com/news/story/6809/4812688 領土 1 130
## 9273 https://udn.com/news/story/6809/4812688 數據 1 130
## 9274 https://udn.com/news/story/6809/4812688 確診 1 130
## 9275 https://udn.com/news/story/6809/4812688 衝突 1 130
## 9276 https://udn.com/news/story/6809/4812688 鄰國 1 130
## 9277 https://udn.com/news/story/6809/4812688 戰鬥機 1 130
## 9278 https://udn.com/news/story/6809/4812688 隨後 1 130
## 9279 https://udn.com/news/story/6809/4812688 幫助 1 130
## 9280 https://udn.com/news/story/6809/4812688 環球網 1 130
## 9281 https://udn.com/news/story/6809/4812688 礁石 1 130
## 9282 https://udn.com/news/story/6809/4812688 還在 1 130
## 9283 https://udn.com/news/story/6809/4812688 羅斯 1 130
## 9284 https://udn.com/news/story/6809/4812688 權利 1 130
## 9285 https://udn.com/news/story/6809/4812688 變成 1 130
## 9286 https://udn.com/news/story/6809/4813050 人士 1 100
## 9287 https://udn.com/news/story/6809/4813050 力量 1 100
## 9288 https://udn.com/news/story/6809/4813050 上午 1 100
## 9289 https://udn.com/news/story/6809/4813050 不得不 1 100
## 9290 https://udn.com/news/story/6809/4813050 中共 1 100
## 9291 https://udn.com/news/story/6809/4813050 反艦 1 100
## 9292 https://udn.com/news/story/6809/4813050 台灣 1 100
## 9293 https://udn.com/news/story/6809/4813050 必須 1 100
## 9294 https://udn.com/news/story/6809/4813050 目標 1 100
## 9295 https://udn.com/news/story/6809/4813050 全面 1 100
## 9296 https://udn.com/news/story/6809/4813050 全球 1 100
## 9297 https://udn.com/news/story/6809/4813050 因應 1 100
## 9298 https://udn.com/news/story/6809/4813050 宋忠平 1 100
## 9299 https://udn.com/news/story/6809/4813050 希望 1 100
## 9300 https://udn.com/news/story/6809/4813050 底線 1 100
## 9301 https://udn.com/news/story/6809/4813050 沿海 1 100
## 9302 https://udn.com/news/story/6809/4813050 知情 1 100
## 9303 https://udn.com/news/story/6809/4813050 知道 1 100
## 9304 https://udn.com/news/story/6809/4813050 表示 1 100
## 9305 https://udn.com/news/story/6809/4813050 青海 1 100
## 9306 https://udn.com/news/story/6809/4813050 南華早報 1 100
## 9307 https://udn.com/news/story/6809/4813050 持續 1 100
## 9308 https://udn.com/news/story/6809/4813050 指出 1 100
## 9309 https://udn.com/news/story/6809/4813050 染疫 1 100
## 9310 https://udn.com/news/story/6809/4813050 甚濃 1 100
## 9311 https://udn.com/news/story/6809/4813050 軍力 1 100
## 9312 https://udn.com/news/story/6809/4813050 軍艦 1 100
## 9313 https://udn.com/news/story/6809/4813050 風險 1 100
## 9314 https://udn.com/news/story/6809/4813050 飛彈 1 100
## 9315 https://udn.com/news/story/6809/4813050 香港 1 100
## 9316 https://udn.com/news/story/6809/4813050 展現 1 100
## 9317 https://udn.com/news/story/6809/4813050 浙江 1 100
## 9318 https://udn.com/news/story/6809/4813050 消息人士 1 100
## 9319 https://udn.com/news/story/6809/4813050 航空母艦 1 100
## 9320 https://udn.com/news/story/6809/4813050 訊號 1 100
## 9321 https://udn.com/news/story/6809/4813050 高空 1 100
## 9322 https://udn.com/news/story/6809/4813050 偵察機 1 100
## 9323 https://udn.com/news/story/6809/4813050 動作 1 100
## 9324 https://udn.com/news/story/6809/4813050 問題 1 100
## 9325 https://udn.com/news/story/6809/4813050 透露 1 100
## 9326 https://udn.com/news/story/6809/4813050 報導 1 100
## 9327 https://udn.com/news/story/6809/4813050 測試 1 100
## 9328 https://udn.com/news/story/6809/4813050 無法 1 100
## 9329 https://udn.com/news/story/6809/4813050 發揮 1 100
## 9330 https://udn.com/news/story/6809/4813050 華府 1 100
## 9331 https://udn.com/news/story/6809/4813050 評論家 1 100
## 9332 https://udn.com/news/story/6809/4813050 超過 1 100
## 9333 https://udn.com/news/story/6809/4813050 意在 1 100
## 9334 https://udn.com/news/story/6809/4813050 意味 1 100
## 9335 https://udn.com/news/story/6809/4813050 禁飛區 1 100
## 9336 https://udn.com/news/story/6809/4813050 萬人 1 100
## 9337 https://udn.com/news/story/6809/4813050 萬人病 1 100
## 9338 https://udn.com/news/story/6809/4813050 解放軍 1 100
## 9339 https://udn.com/news/story/6809/4813050 圖表 1 100
## 9340 https://udn.com/news/story/6809/4813050 實彈演習 1 100
## 9341 https://udn.com/news/story/6809/4813050 誤解 1 100
## 9342 https://udn.com/news/story/6809/4813050 彈道飛彈 1 100
## 9343 https://udn.com/news/story/6809/4813050 彈道導彈 1 100
## 9344 https://udn.com/news/story/6809/4813050 數據 1 100
## 9345 https://udn.com/news/story/6809/4813050 潛在 1 100
## 9346 https://udn.com/news/story/6809/4813050 確診 1 100
## 9347 https://udn.com/news/story/6809/4813050 鄰國 1 100
## 9348 https://udn.com/news/story/6809/4813050 戰機 1 100
## 9349 https://udn.com/news/story/6809/4813050 頻頻 1 100
## 9350 https://udn.com/news/story/6809/4813050 闖入 1 100
## 9351 https://udn.com/news/story/6809/4813050 警告 1 100
## 9352 https://udn.com/news/story/6809/4813050 釋出 1 100
## 9353 https://udn.com/news/story/6809/4813050 顯然 1 100
## 9354 https://udn.com/news/story/6809/4813538 一張 1 268
## 9355 https://udn.com/news/story/6809/4813538 一款 1 268
## 9356 https://udn.com/news/story/6809/4813538 一黨 1 268
## 9357 https://udn.com/news/story/6809/4813538 大學 1 268
## 9358 https://udn.com/news/story/6809/4813538 才能 1 268
## 9359 https://udn.com/news/story/6809/4813538 不加 1 268
## 9360 https://udn.com/news/story/6809/4813538 不具 1 268
## 9361 https://udn.com/news/story/6809/4813538 不滿 1 268
## 9362 https://udn.com/news/story/6809/4813538 中心 1 268
## 9363 https://udn.com/news/story/6809/4813538 中方 1 268
## 9364 https://udn.com/news/story/6809/4813538 中央政府 1 268
## 9365 https://udn.com/news/story/6809/4813538 中國政府 1 268
## 9366 https://udn.com/news/story/6809/4813538 之外 1 268
## 9367 https://udn.com/news/story/6809/4813538 之說 1 268
## 9368 https://udn.com/news/story/6809/4813538 予以 1 268
## 9369 https://udn.com/news/story/6809/4813538 公民 1 268
## 9370 https://udn.com/news/story/6809/4813538 水域 1 268
## 9371 https://udn.com/news/story/6809/4813538 主權 1 268
## 9372 https://udn.com/news/story/6809/4813538 出自 1 268
## 9373 https://udn.com/news/story/6809/4813538 出售 1 268
## 9374 https://udn.com/news/story/6809/4813538 刊印 1 268
## 9375 https://udn.com/news/story/6809/4813538 刊物 1 268
## 9376 https://udn.com/news/story/6809/4813538 召回 1 268
## 9377 https://udn.com/news/story/6809/4813538 可行 1 268
## 9378 https://udn.com/news/story/6809/4813538 可能 1 268
## 9379 https://udn.com/news/story/6809/4813538 必修課 1 268
## 9380 https://udn.com/news/story/6809/4813538 民主 1 268
## 9381 https://udn.com/news/story/6809/4813538 用到 1 268
## 9382 https://udn.com/news/story/6809/4813538 仲裁 1 268
## 9383 https://udn.com/news/story/6809/4813538 仲裁庭 1 268
## 9384 https://udn.com/news/story/6809/4813538 全球 1 268
## 9385 https://udn.com/news/story/6809/4813538 同為 1 268
## 9386 https://udn.com/news/story/6809/4813538 名為 1 268
## 9387 https://udn.com/news/story/6809/4813538 有近 1 268
## 9388 https://udn.com/news/story/6809/4813538 自由 1 268
## 9389 https://udn.com/news/story/6809/4813538 否認 1 268
## 9390 https://udn.com/news/story/6809/4813538 告訴 1 268
## 9391 https://udn.com/news/story/6809/4813538 批評 1 268
## 9392 https://udn.com/news/story/6809/4813538 赤裸裸 1 268
## 9393 https://udn.com/news/story/6809/4813538 使用 1 268
## 9394 https://udn.com/news/story/6809/4813538 依據 1 268
## 9395 https://udn.com/news/story/6809/4813538 店內 1 268
## 9396 https://udn.com/news/story/6809/4813538 所附 1 268
## 9397 https://udn.com/news/story/6809/4813538 承諾 1 268
## 9398 https://udn.com/news/story/6809/4813538 法理 1 268
## 9399 https://udn.com/news/story/6809/4813538 直接 1 268
## 9400 https://udn.com/news/story/6809/4813538 附有 1 268
## 9401 https://udn.com/news/story/6809/4813538 前進 1 268
## 9402 https://udn.com/news/story/6809/4813538 宣傳 1 268
## 9403 https://udn.com/news/story/6809/4813538 宣稱 1 268
## 9404 https://udn.com/news/story/6809/4813538 很多 1 268
## 9405 https://udn.com/news/story/6809/4813538 政府 1 268
## 9406 https://udn.com/news/story/6809/4813538 政治宣傳 1 268
## 9407 https://udn.com/news/story/6809/4813538 染疫 1 268
## 9408 https://udn.com/news/story/6809/4813538 相反 1 268
## 9409 https://udn.com/news/story/6809/4813538 科技 1 268
## 9410 https://udn.com/news/story/6809/4813538 背景 1 268
## 9411 https://udn.com/news/story/6809/4813538 致歉 1 268
## 9412 https://udn.com/news/story/6809/4813538 英國 1 268
## 9413 https://udn.com/news/story/6809/4813538 重視 1 268
## 9414 https://udn.com/news/story/6809/4813538 重新 1 268
## 9415 https://udn.com/news/story/6809/4813538 效力 1 268
## 9416 https://udn.com/news/story/6809/4813538 時說 1 268
## 9417 https://udn.com/news/story/6809/4813538 書內 1 268
## 9418 https://udn.com/news/story/6809/4813538 書裡 1 268
## 9419 https://udn.com/news/story/6809/4813538 海牙 1 268
## 9420 https://udn.com/news/story/6809/4813538 海岸 1 268
## 9421 https://udn.com/news/story/6809/4813538 缺乏 1 268
## 9422 https://udn.com/news/story/6809/4813538 國際 1 268
## 9423 https://udn.com/news/story/6809/4813538 強力 1 268
## 9424 https://udn.com/news/story/6809/4813538 情勢 1 268
## 9425 https://udn.com/news/story/6809/4813538 接受 1 268
## 9426 https://udn.com/news/story/6809/4813538 教育 1 268
## 9427 https://udn.com/news/story/6809/4813538 教授 1 268
## 9428 https://udn.com/news/story/6809/4813538 旋濱 1 268
## 9429 https://udn.com/news/story/6809/4813538 現存 1 268
## 9430 https://udn.com/news/story/6809/4813538 現行 1 268
## 9431 https://udn.com/news/story/6809/4813538 統一 1 268
## 9432 https://udn.com/news/story/6809/4813538 荷蘭 1 268
## 9433 https://udn.com/news/story/6809/4813538 規定 1 268
## 9434 https://udn.com/news/story/6809/4813538 訪問 1 268
## 9435 https://udn.com/news/story/6809/4813538 這本 1 268
## 9436 https://udn.com/news/story/6809/4813538 報導 1 268
## 9437 https://udn.com/news/story/6809/4813538 掌控 1 268
## 9438 https://udn.com/news/story/6809/4813538 提供 1 268
## 9439 https://udn.com/news/story/6809/4813538 提到 1 268
## 9440 https://udn.com/news/story/6809/4813538 提倡 1 268
## 9441 https://udn.com/news/story/6809/4813538 換成 1 268
## 9442 https://udn.com/news/story/6809/4813538 無害 1 268
## 9443 https://udn.com/news/story/6809/4813538 發言人 1 268
## 9444 https://udn.com/news/story/6809/4813538 發展 1 268
## 9445 https://udn.com/news/story/6809/4813538 發現 1 268
## 9446 https://udn.com/news/story/6809/4813538 結合 1 268
## 9447 https://udn.com/news/story/6809/4813538 裁定 1 268
## 9448 https://udn.com/news/story/6809/4813538 費茲傑 1 268
## 9449 https://udn.com/news/story/6809/4813538 進步 1 268
## 9450 https://udn.com/news/story/6809/4813538 意思 1 268
## 9451 https://udn.com/news/story/6809/4813538 照搬 1 268
## 9452 https://udn.com/news/story/6809/4813538 當局 1 268
## 9453 https://udn.com/news/story/6809/4813538 當時 1 268
## 9454 https://udn.com/news/story/6809/4813538 經濟 1 268
## 9455 https://udn.com/news/story/6809/4813538 萬人 1 268
## 9456 https://udn.com/news/story/6809/4813538 萬人病 1 268
## 9457 https://udn.com/news/story/6809/4813538 裡的 1 268
## 9458 https://udn.com/news/story/6809/4813538 裡面 1 268
## 9459 https://udn.com/news/story/6809/4813538 資本主義 1 268
## 9460 https://udn.com/news/story/6809/4813538 資訊 1 268
## 9461 https://udn.com/news/story/6809/4813538 道路 1 268
## 9462 https://udn.com/news/story/6809/4813538 圖表 1 268
## 9463 https://udn.com/news/story/6809/4813538 維州 1 268
## 9464 https://udn.com/news/story/6809/4813538 網站 1 268
## 9465 https://udn.com/news/story/6809/4813538 說明 1 268
## 9466 https://udn.com/news/story/6809/4813538 說法 1 268
## 9467 https://udn.com/news/story/6809/4813538 領土 1 268
## 9468 https://udn.com/news/story/6809/4813538 領導 1 268
## 9469 https://udn.com/news/story/6809/4813538 駁斥 1 268
## 9470 https://udn.com/news/story/6809/4813538 劇本 1 268
## 9471 https://udn.com/news/story/6809/4813538 墨爾本大學 1 268
## 9472 https://udn.com/news/story/6809/4813538 數據 1 268
## 9473 https://udn.com/news/story/6809/4813538 標註 1 268
## 9474 https://udn.com/news/story/6809/4813538 確診 1 268
## 9475 https://udn.com/news/story/6809/4813538 課本 1 268
## 9476 https://udn.com/news/story/6809/4813538 課程 1 268
## 9477 https://udn.com/news/story/6809/4813538 質疑 1 268
## 9478 https://udn.com/news/story/6809/4813538 鄰近 1 268
## 9479 https://udn.com/news/story/6809/4813538 聲索 1 268
## 9480 https://udn.com/news/story/6809/4813538 聲索方 1 268
## 9481 https://udn.com/news/story/6809/4813538 講述 1 268
## 9482 https://udn.com/news/story/6809/4813538 龐大 1 268
## 9483 https://udn.com/news/story/6809/4813538 體系 1 268
## 9484 https://udn.com/news/story/6809/4815509 一席之地 1 248
## 9485 https://udn.com/news/story/6809/4815509 上午 1 248
## 9486 https://udn.com/news/story/6809/4815509 不同 1 248
## 9487 https://udn.com/news/story/6809/4815509 廿七日 1 248
## 9488 https://udn.com/news/story/6809/4815509 廿六日 1 248
## 9489 https://udn.com/news/story/6809/4815509 支持 1 248
## 9490 https://udn.com/news/story/6809/4815509 日本共同社 1 248
## 9491 https://udn.com/news/story/6809/4815509 水域 1 248
## 9492 https://udn.com/news/story/6809/4815509 令人擔憂 1 248
## 9493 https://udn.com/news/story/6809/4815509 包括 1 248
## 9494 https://udn.com/news/story/6809/4815509 本周 1 248
## 9495 https://udn.com/news/story/6809/4815509 正在 1 248
## 9496 https://udn.com/news/story/6809/4815509 全球 1 248
## 9497 https://udn.com/news/story/6809/4815509 再次 1 248
## 9498 https://udn.com/news/story/6809/4815509 在內 1 248
## 9499 https://udn.com/news/story/6809/4815509 地區 1 248
## 9500 https://udn.com/news/story/6809/4815509 此事 1 248
## 9501 https://udn.com/news/story/6809/4815509 利於 1 248
## 9502 https://udn.com/news/story/6809/4815509 利益 1 248
## 9503 https://udn.com/news/story/6809/4815509 努力 1 248
## 9504 https://udn.com/news/story/6809/4815509 我國 1 248
## 9505 https://udn.com/news/story/6809/4815509 攻擊 1 248
## 9506 https://udn.com/news/story/6809/4815509 決定 1 248
## 9507 https://udn.com/news/story/6809/4815509 防衛 1 248
## 9508 https://udn.com/news/story/6809/4815509 事情 1 248
## 9509 https://udn.com/news/story/6809/4815509 事態 1 248
## 9510 https://udn.com/news/story/6809/4815509 亞洲 1 248
## 9511 https://udn.com/news/story/6809/4815509 協助 1 248
## 9512 https://udn.com/news/story/6809/4815509 受益 1 248
## 9513 https://udn.com/news/story/6809/4815509 和平 1 248
## 9514 https://udn.com/news/story/6809/4815509 所有 1 248
## 9515 https://udn.com/news/story/6809/4815509 東協 1 248
## 9516 https://udn.com/news/story/6809/4815509 沿海 1 248
## 9517 https://udn.com/news/story/6809/4815509 狀態 1 248
## 9518 https://udn.com/news/story/6809/4815509 直到 1 248
## 9519 https://udn.com/news/story/6809/4815509 染疫 1 248
## 9520 https://udn.com/news/story/6809/4815509 活動 1 248
## 9521 https://udn.com/news/story/6809/4815509 為期 1 248
## 9522 https://udn.com/news/story/6809/4815509 相當 1 248
## 9523 https://udn.com/news/story/6809/4815509 看法 1 248
## 9524 https://udn.com/news/story/6809/4815509 美菲 1 248
## 9525 https://udn.com/news/story/6809/4815509 美聯社 1 248
## 9526 https://udn.com/news/story/6809/4815509 致電 1 248
## 9527 https://udn.com/news/story/6809/4815509 英國 1 248
## 9528 https://udn.com/news/story/6809/4815509 軍事 1 248
## 9529 https://udn.com/news/story/6809/4815509 飛彈 1 248
## 9530 https://udn.com/news/story/6809/4815509 時期 1 248
## 9531 https://udn.com/news/story/6809/4815509 海事局 1 248
## 9532 https://udn.com/news/story/6809/4815509 海南省 1 248
## 9533 https://udn.com/news/story/6809/4815509 海軍 1 248
## 9534 https://udn.com/news/story/6809/4815509 海域 1 248
## 9535 https://udn.com/news/story/6809/4815509 真的 1 248
## 9536 https://udn.com/news/story/6809/4815509 區域 1 248
## 9537 https://udn.com/news/story/6809/4815509 國家 1 248
## 9538 https://udn.com/news/story/6809/4815509 國際法 1 248
## 9539 https://udn.com/news/story/6809/4815509 基於 1 248
## 9540 https://udn.com/news/story/6809/4815509 條約 1 248
## 9541 https://udn.com/news/story/6809/4815509 清楚 1 248
## 9542 https://udn.com/news/story/6809/4815509 牽連 1 248
## 9543 https://udn.com/news/story/6809/4815509 船艦 1 248
## 9544 https://udn.com/news/story/6809/4815509 處於 1 248
## 9545 https://udn.com/news/story/6809/4815509 處理方式 1 248
## 9546 https://udn.com/news/story/6809/4815509 這和 1 248
## 9547 https://udn.com/news/story/6809/4815509 媒體 1 248
## 9548 https://udn.com/news/story/6809/4815509 最近 1 248
## 9549 https://udn.com/news/story/6809/4815509 發生 1 248
## 9550 https://udn.com/news/story/6809/4815509 發展 1 248
## 9551 https://udn.com/news/story/6809/4815509 超過 1 248
## 9552 https://udn.com/news/story/6809/4815509 傳媒 1 248
## 9553 https://udn.com/news/story/6809/4815509 當事國 1 248
## 9554 https://udn.com/news/story/6809/4815509 萬人 1 248
## 9555 https://udn.com/news/story/6809/4815509 萬人病 1 248
## 9556 https://udn.com/news/story/6809/4815509 試射 1 248
## 9557 https://udn.com/news/story/6809/4815509 過去 1 248
## 9558 https://udn.com/news/story/6809/4815509 道理 1 248
## 9559 https://udn.com/news/story/6809/4815509 電視網 1 248
## 9560 https://udn.com/news/story/6809/4815509 圖表 1 248
## 9561 https://udn.com/news/story/6809/4815509 屢次 1 248
## 9562 https://udn.com/news/story/6809/4815509 數據 1 248
## 9563 https://udn.com/news/story/6809/4815509 歐洲 1 248
## 9564 https://udn.com/news/story/6809/4815509 確診 1 248
## 9565 https://udn.com/news/story/6809/4815509 請求 1 248
## 9566 https://udn.com/news/story/6809/4815509 龍頭 1 248
## 9567 https://udn.com/news/story/6809/4815509 聯防 1 248
## 9568 https://udn.com/news/story/6809/4815509 穩定 1 248
## 9569 https://udn.com/news/story/6809/4815509 關心 1 248
## 9570 https://udn.com/news/story/6809/4815509 關注 1 248
## 9571 https://udn.com/news/story/6809/4817433 一次 1 404
## 9572 https://udn.com/news/story/6809/4817433 一起 1 404
## 9573 https://udn.com/news/story/6809/4817433 一帶 1 404
## 9574 https://udn.com/news/story/6809/4817433 一路 1 404
## 9575 https://udn.com/news/story/6809/4817433 力戰 1 404
## 9576 https://udn.com/news/story/6809/4817433 上船 1 404
## 9577 https://udn.com/news/story/6809/4817433 大規模 1 404
## 9578 https://udn.com/news/story/6809/4817433 工程 1 404
## 9579 https://udn.com/news/story/6809/4817433 已經 1 404
## 9580 https://udn.com/news/story/6809/4817433 不顧 1 404
## 9581 https://udn.com/news/story/6809/4817433 中交貼 1 404
## 9582 https://udn.com/news/story/6809/4817433 中國人民解放軍 1 404
## 9583 https://udn.com/news/story/6809/4817433 中國政府 1 404
## 9584 https://udn.com/news/story/6809/4817433 中將 1 404
## 9585 https://udn.com/news/story/6809/4817433 中程 1 404
## 9586 https://udn.com/news/story/6809/4817433 丹佛 1 404
## 9587 https://udn.com/news/story/6809/4817433 之間 1 404
## 9588 https://udn.com/news/story/6809/4817433 之際 1 404
## 9589 https://udn.com/news/story/6809/4817433 介入 1 404
## 9590 https://udn.com/news/story/6809/4817433 公頃 1 404
## 9591 https://udn.com/news/story/6809/4817433 升級 1 404
## 9592 https://udn.com/news/story/6809/4817433 反對 1 404
## 9593 https://udn.com/news/story/6809/4817433 反艦 1 404
## 9594 https://udn.com/news/story/6809/4817433 付出 1 404
## 9595 https://udn.com/news/story/6809/4817433 代價 1 404
## 9596 https://udn.com/news/story/6809/4817433 令人擔憂 1 404
## 9597 https://udn.com/news/story/6809/4817433 以中 1 404
## 9598 https://udn.com/news/story/6809/4817433 以來 1 404
## 9599 https://udn.com/news/story/6809/4817433 出現 1 404
## 9600 https://udn.com/news/story/6809/4817433 刊載 1 404
## 9601 https://udn.com/news/story/6809/4817433 北京政府 1 404
## 9602 https://udn.com/news/story/6809/4817433 只好 1 404
## 9603 https://udn.com/news/story/6809/4817433 史達偉 1 404
## 9604 https://udn.com/news/story/6809/4817433 外交 1 404
## 9605 https://udn.com/news/story/6809/4817433 打造 1 404
## 9606 https://udn.com/news/story/6809/4817433 未經 1 404
## 9607 https://udn.com/news/story/6809/4817433 本文 1 404
## 9608 https://udn.com/news/story/6809/4817433 正是 1 404
## 9609 https://udn.com/news/story/6809/4817433 立場 1 404
## 9610 https://udn.com/news/story/6809/4817433 交為 1 404
## 9611 https://udn.com/news/story/6809/4817433 交通 1 404
## 9612 https://udn.com/news/story/6809/4817433 仲裁 1 404
## 9613 https://udn.com/news/story/6809/4817433 全球 1 404
## 9614 https://udn.com/news/story/6809/4817433 全球戰略 1 404
## 9615 https://udn.com/news/story/6809/4817433 再次 1 404
## 9616 https://udn.com/news/story/6809/4817433 列入 1 404
## 9617 https://udn.com/news/story/6809/4817433 同意 1 404
## 9618 https://udn.com/news/story/6809/4817433 名單 1 404
## 9619 https://udn.com/news/story/6809/4817433 因<U+7232> 1 404
## 9620 https://udn.com/news/story/6809/4817433 扛下 1 404
## 9621 https://udn.com/news/story/6809/4817433 此次 1 404
## 9622 https://udn.com/news/story/6809/4817433 此舉 1 404
## 9623 https://udn.com/news/story/6809/4817433 行為 1 404
## 9624 https://udn.com/news/story/6809/4817433 行徑 1 404
## 9625 https://udn.com/news/story/6809/4817433 助理 1 404
## 9626 https://udn.com/news/story/6809/4817433 沈重 1 404
## 9627 https://udn.com/news/story/6809/4817433 赤裸裸 1 404
## 9628 https://udn.com/news/story/6809/4817433 防空 1 404
## 9629 https://udn.com/news/story/6809/4817433 並對 1 404
## 9630 https://udn.com/news/story/6809/4817433 來源 1 404
## 9631 https://udn.com/news/story/6809/4817433 具名 1 404
## 9632 https://udn.com/news/story/6809/4817433 協助 1 404
## 9633 https://udn.com/news/story/6809/4817433 所知 1 404
## 9634 https://udn.com/news/story/6809/4817433 承包商 1 404
## 9635 https://udn.com/news/story/6809/4817433 抵制 1 404
## 9636 https://udn.com/news/story/6809/4817433 招商局 1 404
## 9637 https://udn.com/news/story/6809/4817433 東印度 1 404
## 9638 https://udn.com/news/story/6809/4817433 東南亞 1 404
## 9639 https://udn.com/news/story/6809/4817433 法院 1 404
## 9640 https://udn.com/news/story/6809/4817433 爭議 1 404
## 9641 https://udn.com/news/story/6809/4817433 直到 1 404
## 9642 https://udn.com/news/story/6809/4817433 表示 1 404
## 9643 https://udn.com/news/story/6809/4817433 長達 1 404
## 9644 https://udn.com/news/story/6809/4817433 阻嚇 1 404
## 9645 https://udn.com/news/story/6809/4817433 則說 1 404
## 9646 https://udn.com/news/story/6809/4817433 削弱 1 404
## 9647 https://udn.com/news/story/6809/4817433 南中國海 1 404
## 9648 https://udn.com/news/story/6809/4817433 南華早報 1 404
## 9649 https://udn.com/news/story/6809/4817433 建造 1 404
## 9650 https://udn.com/news/story/6809/4817433 指控 1 404
## 9651 https://udn.com/news/story/6809/4817433 指責 1 404
## 9652 https://udn.com/news/story/6809/4817433 染疫 1 404
## 9653 https://udn.com/news/story/6809/4817433 相當程度 1 404
## 9654 https://udn.com/news/story/6809/4817433 看到 1 404
## 9655 https://udn.com/news/story/6809/4817433 研究所 1 404
## 9656 https://udn.com/news/story/6809/4817433 研究員 1 404
## 9657 https://udn.com/news/story/6809/4817433 美中角 1 404
## 9658 https://udn.com/news/story/6809/4817433 美方 1 404
## 9659 https://udn.com/news/story/6809/4817433 英畝 1 404
## 9660 https://udn.com/news/story/6809/4817433 負擔 1 404
## 9661 https://udn.com/news/story/6809/4817433 面對 1 404
## 9662 https://udn.com/news/story/6809/4817433 飛彈 1 404
## 9663 https://udn.com/news/story/6809/4817433 飛機 1 404
## 9664 https://udn.com/news/story/6809/4817433 原因 1 404
## 9665 https://udn.com/news/story/6809/4817433 案例 1 404
## 9666 https://udn.com/news/story/6809/4817433 海牙 1 404
## 9667 https://udn.com/news/story/6809/4817433 海軍 1 404
## 9668 https://udn.com/news/story/6809/4817433 海域 1 404
## 9669 https://udn.com/news/story/6809/4817433 海造陸 1 404
## 9670 https://udn.com/news/story/6809/4817433 租約 1 404
## 9671 https://udn.com/news/story/6809/4817433 紐約時報 1 404
## 9672 https://udn.com/news/story/6809/4817433 脅迫 1 404
## 9673 https://udn.com/news/story/6809/4817433 記者 1 404
## 9674 https://udn.com/news/story/6809/4817433 高階 1 404
## 9675 https://udn.com/news/story/6809/4817433 停止 1 404
## 9676 https://udn.com/news/story/6809/4817433 偵察機 1 404
## 9677 https://udn.com/news/story/6809/4817433 參考 1 404
## 9678 https://udn.com/news/story/6809/4817433 參與 1 404
## 9679 https://udn.com/news/story/6809/4817433 商周 1 404
## 9680 https://udn.com/news/story/6809/4817433 商務 1 404
## 9681 https://udn.com/news/story/6809/4817433 商務部長 1 404
## 9682 https://udn.com/news/story/6809/4817433 問題 1 404
## 9683 https://udn.com/news/story/6809/4817433 國防 1 404
## 9684 https://udn.com/news/story/6809/4817433 國際 1 404
## 9685 https://udn.com/news/story/6809/4817433 專家 1 404
## 9686 https://udn.com/news/story/6809/4817433 常設 1 404
## 9687 https://udn.com/news/story/6809/4817433 康恩 1 404
## 9688 https://udn.com/news/story/6809/4817433 強調 1 404
## 9689 https://udn.com/news/story/6809/4817433 授權 1 404
## 9690 https://udn.com/news/story/6809/4817433 採取行動 1 404
## 9691 https://udn.com/news/story/6809/4817433 現代版 1 404
## 9692 https://udn.com/news/story/6809/4817433 荷蘭 1 404
## 9693 https://udn.com/news/story/6809/4817433 設有 1 404
## 9694 https://udn.com/news/story/6809/4817433 設施 1 404
## 9695 https://udn.com/news/story/6809/4817433 這裡成 1 404
## 9696 https://udn.com/news/story/6809/4817433 造成 1 404
## 9697 https://udn.com/news/story/6809/4817433 連結 1 404
## 9698 https://udn.com/news/story/6809/4817433 部將 1 404
## 9699 https://udn.com/news/story/6809/4817433 陷阱 1 404
## 9700 https://udn.com/news/story/6809/4817433 斯特羅 1 404
## 9701 https://udn.com/news/story/6809/4817433 最為 1 404
## 9702 https://udn.com/news/story/6809/4817433 無力 1 404
## 9703 https://udn.com/news/story/6809/4817433 無法 1 404
## 9704 https://udn.com/news/story/6809/4817433 華為 1 404
## 9705 https://udn.com/news/story/6809/4817433 菲律賓 1 404
## 9706 https://udn.com/news/story/6809/4817433 裁決 1 404
## 9707 https://udn.com/news/story/6809/4817433 貿易 1 404
## 9708 https://udn.com/news/story/6809/4817433 週三 1 404
## 9709 https://udn.com/news/story/6809/4817433 進入 1 404
## 9710 https://udn.com/news/story/6809/4817433 進行 1 404
## 9711 https://udn.com/news/story/6809/4817433 開發 1 404
## 9712 https://udn.com/news/story/6809/4817433 開墾 1 404
## 9713 https://udn.com/news/story/6809/4817433 集團 1 404
## 9714 https://udn.com/news/story/6809/4817433 債務 1 404
## 9715 https://udn.com/news/story/6809/4817433 傷害 1 404
## 9716 https://udn.com/news/story/6809/4817433 勢力 1 404
## 9717 https://udn.com/news/story/6809/4817433 想將 1 404
## 9718 https://udn.com/news/story/6809/4817433 意在 1 404
## 9719 https://udn.com/news/story/6809/4817433 意味 1 404
## 9720 https://udn.com/news/story/6809/4817433 準備 1 404
## 9721 https://udn.com/news/story/6809/4817433 禁止 1 404
## 9722 https://udn.com/news/story/6809/4817433 經營 1 404
## 9723 https://udn.com/news/story/6809/4817433 萬人 1 404
## 9724 https://udn.com/news/story/6809/4817433 萬人病 1 404
## 9725 https://udn.com/news/story/6809/4817433 落入 1 404
## 9726 https://udn.com/news/story/6809/4817433 試射 1 404
## 9727 https://udn.com/news/story/6809/4817433 試圖 1 404
## 9728 https://udn.com/news/story/6809/4817433 該國 1 404
## 9729 https://udn.com/news/story/6809/4817433 資深 1 404
## 9730 https://udn.com/news/story/6809/4817433 資源 1 404
## 9731 https://udn.com/news/story/6809/4817433 像是 1 404
## 9732 https://udn.com/news/story/6809/4817433 圖表 1 404
## 9733 https://udn.com/news/story/6809/4817433 夥伴 1 404
## 9734 https://udn.com/news/story/6809/4817433 奪得 1 404
## 9735 https://udn.com/news/story/6809/4817433 實現 1 404
## 9736 https://udn.com/news/story/6809/4817433 實彈演習 1 404
## 9737 https://udn.com/news/story/6809/4817433 對抗 1 404
## 9738 https://udn.com/news/story/6809/4817433 演習 1 404
## 9739 https://udn.com/news/story/6809/4817433 稱之為 1 404
## 9740 https://udn.com/news/story/6809/4817433 管制 1 404
## 9741 https://udn.com/news/story/6809/4817433 認為 1 404
## 9742 https://udn.com/news/story/6809/4817433 彈道導彈 1 404
## 9743 https://udn.com/news/story/6809/4817433 摩擦 1 404
## 9744 https://udn.com/news/story/6809/4817433 數據 1 404
## 9745 https://udn.com/news/story/6809/4817433 標籤 1 404
## 9746 https://udn.com/news/story/6809/4817433 確診 1 404
## 9747 https://udn.com/news/story/6809/4817433 鄰國 1 404
## 9748 https://udn.com/news/story/6809/4817433 戰略 1 404
## 9749 https://udn.com/news/story/6809/4817433 橫跨 1 404
## 9750 https://udn.com/news/story/6809/4817433 償還 1 404
## 9751 https://udn.com/news/story/6809/4817433 幫助 1 404
## 9752 https://udn.com/news/story/6809/4817433 應對 1 404
## 9753 https://udn.com/news/story/6809/4817433 環境 1 404
## 9754 https://udn.com/news/story/6809/4817433 還錢給 1 404
## 9755 https://udn.com/news/story/6809/4817433 擴張 1 404
## 9756 https://udn.com/news/story/6809/4817433 簡直 1 404
## 9757 https://udn.com/news/story/6809/4817433 簡稱 1 404
## 9758 https://udn.com/news/story/6809/4817433 藉此 1 404
## 9759 https://udn.com/news/story/6809/4817433 轉載 1 404
## 9760 https://udn.com/news/story/6809/4817433 羅斯 1 404
## 9761 https://udn.com/news/story/6809/4817433 龐大 1 404
## 9762 https://udn.com/news/story/6809/4817433 繼續 1 404
## 9763 https://udn.com/news/story/6809/4817433 讓給 1 404
## 9764 https://udn.com/news/story/6809/4877676 上午 1 191
## 9765 https://udn.com/news/story/6809/4877676 下午 1 191
## 9766 https://udn.com/news/story/6809/4877676 不用說 1 191
## 9767 https://udn.com/news/story/6809/4877676 內政部長 1 191
## 9768 https://udn.com/news/story/6809/4877676 公民 1 191
## 9769 https://udn.com/news/story/6809/4877676 分間 1 191
## 9770 https://udn.com/news/story/6809/4877676 少數黨 1 191
## 9771 https://udn.com/news/story/6809/4877676 主權 1 191
## 9772 https://udn.com/news/story/6809/4877676 司法 1 191
## 9773 https://udn.com/news/story/6809/4877676 外交事務 1 191
## 9774 https://udn.com/news/story/6809/4877676 失業 1 191
## 9775 https://udn.com/news/story/6809/4877676 本地 1 191
## 9776 https://udn.com/news/story/6809/4877676 永續 1 191
## 9777 https://udn.com/news/story/6809/4877676 全球 1 191
## 9778 https://udn.com/news/story/6809/4877676 地緣 1 191
## 9779 https://udn.com/news/story/6809/4877676 有線電視 1 191
## 9780 https://udn.com/news/story/6809/4877676 行動 1 191
## 9781 https://udn.com/news/story/6809/4877676 助理 1 191
## 9782 https://udn.com/news/story/6809/4877676 告訴 1 191
## 9783 https://udn.com/news/story/6809/4877676 杜特蒂將 1 191
## 9784 https://udn.com/news/story/6809/4877676 亞太地區 1 191
## 9785 https://udn.com/news/story/6809/4877676 呼籲 1 191
## 9786 https://udn.com/news/story/6809/4877676 委員會 1 191
## 9787 https://udn.com/news/story/6809/4877676 抨擊 1 191
## 9788 https://udn.com/news/story/6809/4877676 法外 1 191
## 9789 https://udn.com/news/story/6809/4877676 法治 1 191
## 9790 https://udn.com/news/story/6809/4877676 法規 1 191
## 9791 https://udn.com/news/story/6809/4877676 法辦 1 191
## 9792 https://udn.com/news/story/6809/4877676 爭議 1 191
## 9793 https://udn.com/news/story/6809/4877676 近日 1 191
## 9794 https://udn.com/news/story/6809/4877676 威脅 1 191
## 9795 https://udn.com/news/story/6809/4877676 持續 1 191
## 9796 https://udn.com/news/story/6809/4877676 指控 1 191
## 9797 https://udn.com/news/story/6809/4877676 政治 1 191
## 9798 https://udn.com/news/story/6809/4877676 政策 1 191
## 9799 https://udn.com/news/story/6809/4877676 是否 1 191
## 9800 https://udn.com/news/story/6809/4877676 流行 1 191
## 9801 https://udn.com/news/story/6809/4877676 疫情 1 191
## 9802 https://udn.com/news/story/6809/4877676 看待 1 191
## 9803 https://udn.com/news/story/6809/4877676 要求 1 191
## 9804 https://udn.com/news/story/6809/4877676 首日 1 191
## 9805 https://udn.com/news/story/6809/4877676 首度 1 191
## 9806 https://udn.com/news/story/6809/4877676 恐怖主義 1 191
## 9807 https://udn.com/news/story/6809/4877676 時到 1 191
## 9808 https://udn.com/news/story/6809/4877676 時說 1 191
## 9809 https://udn.com/news/story/6809/4877676 氣候變遷 1 191
## 9810 https://udn.com/news/story/6809/4877676 特別 1 191
## 9811 https://udn.com/news/story/6809/4877676 紐約 1 191
## 9812 https://udn.com/news/story/6809/4877676 記者 1 191
## 9813 https://udn.com/news/story/6809/4877676 記者會 1 191
## 9814 https://udn.com/news/story/6809/4877676 針對 1 191
## 9815 https://udn.com/news/story/6809/4877676 參議院 1 191
## 9816 https://udn.com/news/story/6809/4877676 啟動 1 191
## 9817 https://udn.com/news/story/6809/4877676 國家 1 191
## 9818 https://udn.com/news/story/6809/4877676 執行 1 191
## 9819 https://udn.com/news/story/6809/4877676 從未有過 1 191
## 9820 https://udn.com/news/story/6809/4877676 接受 1 191
## 9821 https://udn.com/news/story/6809/4877676 產品 1 191
## 9822 https://udn.com/news/story/6809/4877676 移送 1 191
## 9823 https://udn.com/news/story/6809/4877676 處決 1 191
## 9824 https://udn.com/news/story/6809/4877676 訪問 1 191
## 9825 https://udn.com/news/story/6809/4877676 透過 1 191
## 9826 https://udn.com/news/story/6809/4877676 備受 1 191
## 9827 https://udn.com/news/story/6809/4877676 勞工 1 191
## 9828 https://udn.com/news/story/6809/4877676 提問 1 191
## 9829 https://udn.com/news/story/6809/4877676 程序 1 191
## 9830 https://udn.com/news/story/6809/4877676 菲中 1 191
## 9831 https://udn.com/news/story/6809/4877676 視訊 1 191
## 9832 https://udn.com/news/story/6809/4877676 新冠肺炎 1 191
## 9833 https://udn.com/news/story/6809/4877676 新聞 1 191
## 9834 https://udn.com/news/story/6809/4877676 新聞網 1 191
## 9835 https://udn.com/news/story/6809/4877676 瑞隆 1 191
## 9836 https://udn.com/news/story/6809/4877676 違反 1 191
## 9837 https://udn.com/news/story/6809/4877676 預定 1 191
## 9838 https://udn.com/news/story/6809/4877676 預計 1 191
## 9839 https://udn.com/news/story/6809/4877676 演說 1 191
## 9840 https://udn.com/news/story/6809/4877676 維和 1 191
## 9841 https://udn.com/news/story/6809/4877676 製造 1 191
## 9842 https://udn.com/news/story/6809/4877676 認真 1 191
## 9843 https://udn.com/news/story/6809/4877676 領袖 1 191
## 9844 https://udn.com/news/story/6809/4877676 影響 1 191
## 9845 https://udn.com/news/story/6809/4877676 暫時 1 191
## 9846 https://udn.com/news/story/6809/4877676 歐洲聯盟 1 191
## 9847 https://udn.com/news/story/6809/4877676 歐盟 1 191
## 9848 https://udn.com/news/story/6809/4877676 確保 1 191
## 9849 https://udn.com/news/story/6809/4877676 線上 1 191
## 9850 https://udn.com/news/story/6809/4877676 導致 1 191
## 9851 https://udn.com/news/story/6809/4877676 優惠 1 191
## 9852 https://udn.com/news/story/6809/4877676 應變 1 191
## 9853 https://udn.com/news/story/6809/4877676 縱容 1 191
## 9854 https://udn.com/news/story/6809/4877676 聯合國 1 191
## 9855 https://udn.com/news/story/6809/4877676 證明 1 191
## 9856 https://udn.com/news/story/6809/4877676 關切 1 191
## 9857 https://udn.com/news/story/6809/4877676 關注 1 191
## 9858 https://udn.com/news/story/6809/4877676 關稅 1 191
## 9859 https://udn.com/news/story/6809/4877676 嚴重 1 191
## 9860 https://udn.com/news/story/6809/4877676 警署 1 191
## 9861 https://udn.com/news/story/6809/4877676 鑑於 1 191
## 9862 https://udn.com/news/story/6809/4891329 <U+7EA6>合 1 97
## 9863 https://udn.com/news/story/6809/4891329 一架 1 97
## 9864 https://udn.com/news/story/6809/4891329 上周 1 97
## 9865 https://udn.com/news/story/6809/4891329 上空 1 97
## 9866 https://udn.com/news/story/6809/4891329 大多 1 97
## 9867 https://udn.com/news/story/6809/4891329 大約 1 97
## 9868 https://udn.com/news/story/6809/4891329 之內 1 97
## 9869 https://udn.com/news/story/6809/4891329 今年以來 1 97
## 9870 https://udn.com/news/story/6809/4891329 切進 1 97
## 9871 https://udn.com/news/story/6809/4891329 日才 1 97
## 9872 https://udn.com/news/story/6809/4891329 以上 1 97
## 9873 https://udn.com/news/story/6809/4891329 包括 1 97
## 9874 https://udn.com/news/story/6809/4891329 平台 1 97
## 9875 https://udn.com/news/story/6809/4891329 民航機 1 97
## 9876 https://udn.com/news/story/6809/4891329 再次 1 97
## 9877 https://udn.com/news/story/6809/4891329 多次 1 97
## 9878 https://udn.com/news/story/6809/4891329 行動 1 97
## 9879 https://udn.com/news/story/6809/4891329 改為 1 97
## 9880 https://udn.com/news/story/6809/4891329 刷新 1 97
## 9881 https://udn.com/news/story/6809/4891329 抵近 1 97
## 9882 https://udn.com/news/story/6809/4891329 東海 1 97
## 9883 https://udn.com/news/story/6809/4891329 空域 1 97
## 9884 https://udn.com/news/story/6809/4891329 近期 1 97
## 9885 https://udn.com/news/story/6809/4891329 保持 1 97
## 9886 https://udn.com/news/story/6809/4891329 則是 1 97
## 9887 https://udn.com/news/story/6809/4891329 活動 1 97
## 9888 https://udn.com/news/story/6809/4891329 美國空軍 1 97
## 9889 https://udn.com/news/story/6809/4891329 飛機 1 97
## 9890 https://udn.com/news/story/6809/4891329 飛臨 1 97
## 9891 https://udn.com/news/story/6809/4891329 時變 1 97
## 9892 https://udn.com/news/story/6809/4891329 海軍 1 97
## 9893 https://udn.com/news/story/6809/4891329 記錄 1 97
## 9894 https://udn.com/news/story/6809/4891329 馬來西亞 1 97
## 9895 https://udn.com/news/story/6809/4891329 密切 1 97
## 9896 https://udn.com/news/story/6809/4891329 推特上 1 97
## 9897 https://udn.com/news/story/6809/4891329 報導 1 97
## 9898 https://udn.com/news/story/6809/4891329 掌握 1 97
## 9899 https://udn.com/news/story/6809/4891329 發文 1 97
## 9900 https://udn.com/news/story/6809/4891329 菲律賓 1 97
## 9901 https://udn.com/news/story/6809/4891329 進行 1 97
## 9902 https://udn.com/news/story/6809/4891329 黃海 1 97
## 9903 https://udn.com/news/story/6809/4891329 僅有 1 97
## 9904 https://udn.com/news/story/6809/4891329 感知 1 97
## 9905 https://udn.com/news/story/6809/4891329 解放軍 1 97
## 9906 https://udn.com/news/story/6809/4891329 電子 1 97
## 9907 https://udn.com/news/story/6809/4891329 態勢 1 97
## 9908 https://udn.com/news/story/6809/4891329 廣東 1 97
## 9909 https://udn.com/news/story/6809/4891329 靠近 1 97
## 9910 https://udn.com/news/story/6809/4891329 戰略 1 97
## 9911 https://udn.com/news/story/6809/4891329 機上 1 97
## 9912 https://udn.com/news/story/6809/4891329 環球網 1 97
## 9913 https://udn.com/news/story/6809/4891329 識別 1 97
## 9914 https://udn.com/news/story/6809/4891329 識別碼 1 97
## 9915 https://udn.com/news/story/6809/4891329 關注 1 97
## 9916 https://udn.com/news/story/6809/4891329 顯示 1 97
## 9917 https://udn.com/news/story/6809/4925039 人造 1 124
## 9918 https://udn.com/news/story/6809/4925039 不利於 1 124
## 9919 https://udn.com/news/story/6809/4925039 中共 1 124
## 9920 https://udn.com/news/story/6809/4925039 今天 1 124
## 9921 https://udn.com/news/story/6809/4925039 及雷號 1 124
## 9922 https://udn.com/news/story/6809/4925039 反對 1 124
## 9923 https://udn.com/news/story/6809/4925039 反潛 1 124
## 9924 https://udn.com/news/story/6809/4925039 天然氣 1 124
## 9925 https://udn.com/news/story/6809/4925039 日本 1 124
## 9926 https://udn.com/news/story/6809/4925039 日本政府 1 124
## 9927 https://udn.com/news/story/6809/4925039 主張 1 124
## 9928 https://udn.com/news/story/6809/4925039 主權 1 124
## 9929 https://udn.com/news/story/6809/4925039 加賀 1 124
## 9930 https://udn.com/news/story/6809/4925039 包括 1 124
## 9931 https://udn.com/news/story/6809/4925039 可能 1 124
## 9932 https://udn.com/news/story/6809/4925039 台灣 1 124
## 9933 https://udn.com/news/story/6809/4925039 外圍 1 124
## 9934 https://udn.com/news/story/6809/4925039 必需品 1 124
## 9935 https://udn.com/news/story/6809/4925039 石油 1 124
## 9936 https://udn.com/news/story/6809/4925039 地區 1 124
## 9937 https://udn.com/news/story/6809/4925039 地理位置 1 124
## 9938 https://udn.com/news/story/6809/4925039 安全 1 124
## 9939 https://udn.com/news/story/6809/4925039 旨在 1 124
## 9940 https://udn.com/news/story/6809/4925039 有意 1 124
## 9941 https://udn.com/news/story/6809/4925039 自衛隊 1 124
## 9942 https://udn.com/news/story/6809/4925039 行為 1 124
## 9943 https://udn.com/news/story/6809/4925039 汶萊 1 124
## 9944 https://udn.com/news/story/6809/4925039 並未 1 124
## 9945 https://udn.com/news/story/6809/4925039 亞洲 1 124
## 9946 https://udn.com/news/story/6809/4925039 官媒 1 124
## 9947 https://udn.com/news/story/6809/4925039 所有 1 124
## 9948 https://udn.com/news/story/6809/4925039 直升機 1 124
## 9949 https://udn.com/news/story/6809/4925039 金蘭灣 1 124
## 9950 https://udn.com/news/story/6809/4925039 威嚇 1 124
## 9951 https://udn.com/news/story/6809/4925039 建立 1 124
## 9952 https://udn.com/news/story/6809/4925039 指出 1 124
## 9953 https://udn.com/news/story/6809/4925039 昨天 1 124
## 9954 https://udn.com/news/story/6809/4925039 活動 1 124
## 9955 https://udn.com/news/story/6809/4925039 美國 1 124
## 9956 https://udn.com/news/story/6809/4925039 哨站 1 124
## 9957 https://udn.com/news/story/6809/4925039 島嶼 1 124
## 9958 https://udn.com/news/story/6809/4925039 海上 1 124
## 9959 https://udn.com/news/story/6809/4925039 海域 1 124
## 9960 https://udn.com/news/story/6809/4925039 能力 1 124
## 9961 https://udn.com/news/story/6809/4925039 航空母艦 1 124
## 9962 https://udn.com/news/story/6809/4925039 馬來西亞 1 124
## 9963 https://udn.com/news/story/6809/4925039 停泊 1 124
## 9964 https://udn.com/news/story/6809/4925039 執行 1 124
## 9965 https://udn.com/news/story/6809/4925039 堅決 1 124
## 9966 https://udn.com/news/story/6809/4925039 從事 1 124
## 9967 https://udn.com/news/story/6809/4925039 細節 1 124
## 9968 https://udn.com/news/story/6809/4925039 船上 1 124
## 9969 https://udn.com/news/story/6809/4925039 透過 1 124
## 9970 https://udn.com/news/story/6809/4925039 透露 1 124
## 9971 https://udn.com/news/story/6809/4925039 這片 1 124
## 9972 https://udn.com/news/story/6809/4925039 部分 1 124
## 9973 https://udn.com/news/story/6809/4925039 部署 1 124
## 9974 https://udn.com/news/story/6809/4925039 報導 1 124
## 9975 https://udn.com/news/story/6809/4925039 幾乎 1 124
## 9976 https://udn.com/news/story/6809/4925039 提到 1 124
## 9977 https://udn.com/news/story/6809/4925039 提高 1 124
## 9978 https://udn.com/news/story/6809/4925039 翔龍號 1 124
## 9979 https://udn.com/news/story/6809/4925039 菲律賓 1 124
## 9980 https://udn.com/news/story/6809/4925039 週末 1 124
## 9981 https://udn.com/news/story/6809/4925039 開採 1 124
## 9982 https://udn.com/news/story/6809/4925039 當地 1 124
## 9983 https://udn.com/news/story/6809/4925039 補充 1 124
## 9984 https://udn.com/news/story/6809/4925039 試圖 1 124
## 9985 https://udn.com/news/story/6809/4925039 路透社 1 124
## 9986 https://udn.com/news/story/6809/4925039 鄰國 1 124
## 9987 https://udn.com/news/story/6809/4925039 戰術 1 124
## 9988 https://udn.com/news/story/6809/4925039 擁有 1 124
## 9989 https://udn.com/news/story/6809/4925039 頻繁 1 124
## 9990 https://udn.com/news/story/6809/4925039 環球時報 1 124
## 9991 https://udn.com/news/story/6809/4925039 聲稱 1 124
## 9992 https://udn.com/news/story/6809/4925039 還在 1 124
## 9993 https://udn.com/news/story/6809/4925039 穩定 1 124
## 9994 https://udn.com/news/story/6809/4925039 譴責 1 124
## 9995 https://udn.com/news/story/6809/4933721 一天 1 206
## 9996 https://udn.com/news/story/6809/4933721 川普 1 206
## 9997 https://udn.com/news/story/6809/4933721 不可動搖 1 206
## 9998 https://udn.com/news/story/6809/4933721 中隊 1 206
## 9999 https://udn.com/news/story/6809/4933721 內容 1 206
## 10000 https://udn.com/news/story/6809/4933721 友誼 1 206
## 10001 https://udn.com/news/story/6809/4933721 太平洋 1 206
## 10002 https://udn.com/news/story/6809/4933721 日方 1 206
## 10003 https://udn.com/news/story/6809/4933721 日起 1 206
## 10004 https://udn.com/news/story/6809/4933721 水面 1 206
## 10005 https://udn.com/news/story/6809/4933721 主要 1 206
## 10006 https://udn.com/news/story/6809/4933721 包括 1 206
## 10007 https://udn.com/news/story/6809/4933721 去年 1 206
## 10008 https://udn.com/news/story/6809/4933721 司令 1 206
## 10009 https://udn.com/news/story/6809/4933721 未來 1 206
## 10010 https://udn.com/news/story/6809/4933721 任務 1 206
## 10011 https://udn.com/news/story/6809/4933721 伊斯特 1 206
## 10012 https://udn.com/news/story/6809/4933721 共同 1 206
## 10013 https://udn.com/news/story/6809/4933721 合作 1 206
## 10014 https://udn.com/news/story/6809/4933721 同盟 1 206
## 10015 https://udn.com/news/story/6809/4933721 向來 1 206
## 10016 https://udn.com/news/story/6809/4933721 自由 1 206
## 10017 https://udn.com/news/story/6809/4933721 西田 1 206
## 10018 https://udn.com/news/story/6809/4933721 作戰 1 206
## 10019 https://udn.com/news/story/6809/4933721 努號 1 206
## 10020 https://udn.com/news/story/6809/4933721 完成 1 206
## 10021 https://udn.com/news/story/6809/4933721 快速 1 206
## 10022 https://udn.com/news/story/6809/4933721 扮演 1 206
## 10023 https://udn.com/news/story/6809/4933721 技能 1 206
## 10024 https://udn.com/news/story/6809/4933721 角色 1 206
## 10025 https://udn.com/news/story/6809/4933721 和平 1 206
## 10026 https://udn.com/news/story/6809/4933721 果斷 1 206
## 10027 https://udn.com/news/story/6809/4933721 直升機 1 206
## 10028 https://udn.com/news/story/6809/4933721 保持 1 206
## 10029 https://udn.com/news/story/6809/4933721 前進 1 206
## 10030 https://udn.com/news/story/6809/4933721 前線 1 206
## 10031 https://udn.com/news/story/6809/4933721 勃克級 1 206
## 10032 https://udn.com/news/story/6809/4933721 南中國海 1 206
## 10033 https://udn.com/news/story/6809/4933721 宣示 1 206
## 10034 https://udn.com/news/story/6809/4933721 建軍 1 206
## 10035 https://udn.com/news/story/6809/4933721 疫情 1 206
## 10036 https://udn.com/news/story/6809/4933721 突發狀況 1 206
## 10037 https://udn.com/news/story/6809/4933721 飛彈 1 206
## 10038 https://udn.com/news/story/6809/4933721 展現 1 206
## 10039 https://udn.com/news/story/6809/4933721 消息 1 206
## 10040 https://udn.com/news/story/6809/4933721 能力 1 206
## 10041 https://udn.com/news/story/6809/4933721 做出 1 206
## 10042 https://udn.com/news/story/6809/4933721 執行 1 206
## 10043 https://udn.com/news/story/6809/4933721 基石 1 206
## 10044 https://udn.com/news/story/6809/4933721 堅實 1 206
## 10045 https://udn.com/news/story/6809/4933721 密切合作 1 206
## 10046 https://udn.com/news/story/6809/4933721 將會 1 206
## 10047 https://udn.com/news/story/6809/4933721 專業 1 206
## 10048 https://udn.com/news/story/6809/4933721 敏志 1 206
## 10049 https://udn.com/news/story/6809/4933721 現有 1 206
## 10050 https://udn.com/news/story/6809/4933721 訪問 1 206
## 10051 https://udn.com/news/story/6809/4933721 透過 1 206
## 10052 https://udn.com/news/story/6809/4933721 這是 1 206
## 10053 https://udn.com/news/story/6809/4933721 通信 1 206
## 10054 https://udn.com/news/story/6809/4933721 部發 1 206
## 10055 https://udn.com/news/story/6809/4933721 部署 1 206
## 10056 https://udn.com/news/story/6809/4933721 期間 1 206
## 10057 https://udn.com/news/story/6809/4933721 登上 1 206
## 10058 https://udn.com/news/story/6809/4933721 視察 1 206
## 10059 https://udn.com/news/story/6809/4933721 超過 1 206
## 10060 https://udn.com/news/story/6809/4933721 週年 1 206
## 10061 https://udn.com/news/story/6809/4933721 開放 1 206
## 10062 https://udn.com/news/story/6809/4933721 集體 1 206
## 10063 https://udn.com/news/story/6809/4933721 搭載 1 206
## 10064 https://udn.com/news/story/6809/4933721 盟軍 1 206
## 10065 https://udn.com/news/story/6809/4933721 蒂珀卡 1 206
## 10066 https://udn.com/news/story/6809/4933721 號為 1 206
## 10067 https://udn.com/news/story/6809/4933721 補給艦 1 206
## 10068 https://udn.com/news/story/6809/4933721 雷號 1 206
## 10069 https://udn.com/news/story/6809/4933721 夥伴 1 206
## 10070 https://udn.com/news/story/6809/4933721 演訓 1 206
## 10071 https://udn.com/news/story/6809/4933721 演練 1 206
## 10072 https://udn.com/news/story/6809/4933721 遠洋 1 206
## 10073 https://udn.com/news/story/6809/4933721 數據鏈 1 206
## 10074 https://udn.com/news/story/6809/4933721 確保 1 206
## 10075 https://udn.com/news/story/6809/4933721 適逢 1 206
## 10076 https://udn.com/news/story/6809/4933721 戰術 1 206
## 10077 https://udn.com/news/story/6809/4933721 整補 1 206
## 10078 https://udn.com/news/story/6809/4933721 隨即 1 206
## 10079 https://udn.com/news/story/6809/4933721 應變 1 206
## 10080 https://udn.com/news/story/6809/4933721 應變措施 1 206
## 10081 https://udn.com/news/story/6809/4933721 總統 1 206
## 10082 https://udn.com/news/story/6809/4933721 隸屬 1 206
## 10083 https://udn.com/news/story/6809/4933721 藉由 1 206
## 10084 https://udn.com/news/story/6809/4933721 藉此 1 206
## 10085 https://udn.com/news/story/6809/4933721 雙方 1 206
## 10086 https://udn.com/news/story/6809/4933721 穩固 1 206
## 10087 https://udn.com/news/story/6809/4933721 艦艇 1 206
## 10088 https://udn.com/news/story/6809/4933721 護衛 1 206
## 10089 https://udn.com/news/story/6809/4934837 一己 1 298
## 10090 https://udn.com/news/story/6809/4934837 一是 1 298
## 10091 https://udn.com/news/story/6809/4934837 二是 1 298
## 10092 https://udn.com/news/story/6809/4934837 力度 1 298
## 10093 https://udn.com/news/story/6809/4934837 又將 1 298
## 10094 https://udn.com/news/story/6809/4934837 上半年 1 298
## 10095 https://udn.com/news/story/6809/4934837 大校 1 298
## 10096 https://udn.com/news/story/6809/4934837 大選 1 298
## 10097 https://udn.com/news/story/6809/4934837 不得人心 1 298
## 10098 https://udn.com/news/story/6809/4934837 不斷 1 298
## 10099 https://udn.com/news/story/6809/4934837 中美 1 298
## 10100 https://udn.com/news/story/6809/4934837 中美關係 1 298
## 10101 https://udn.com/news/story/6809/4934837 之際 1 298
## 10102 https://udn.com/news/story/6809/4934837 公布 1 298
## 10103 https://udn.com/news/story/6809/4934837 分析 1 298
## 10104 https://udn.com/news/story/6809/4934837 反對 1 298
## 10105 https://udn.com/news/story/6809/4934837 方面 1 298
## 10106 https://udn.com/news/story/6809/4934837 王毅 1 298
## 10107 https://udn.com/news/story/6809/4934837 世界 1 298
## 10108 https://udn.com/news/story/6809/4934837 出席 1 298
## 10109 https://udn.com/news/story/6809/4934837 加大 1 298
## 10110 https://udn.com/news/story/6809/4934837 包括 1 298
## 10111 https://udn.com/news/story/6809/4934837 可能 1 298
## 10112 https://udn.com/news/story/6809/4934837 平台 1 298
## 10113 https://udn.com/news/story/6809/4934837 平靜 1 298
## 10114 https://udn.com/news/story/6809/4934837 打擊 1 298
## 10115 https://udn.com/news/story/6809/4934837 正在 1 298
## 10116 https://udn.com/news/story/6809/4934837 正確 1 298
## 10117 https://udn.com/news/story/6809/4934837 甲板 1 298
## 10118 https://udn.com/news/story/6809/4934837 回應 1 298
## 10119 https://udn.com/news/story/6809/4934837 地區 1 298
## 10120 https://udn.com/news/story/6809/4934837 地區衝突 1 298
## 10121 https://udn.com/news/story/6809/4934837 多具 1 298
## 10122 https://udn.com/news/story/6809/4934837 妄圖 1 298
## 10123 https://udn.com/news/story/6809/4934837 安全 1 298
## 10124 https://udn.com/news/story/6809/4934837 成為 1 298
## 10125 https://udn.com/news/story/6809/4934837 米利 1 298
## 10126 https://udn.com/news/story/6809/4934837 行徑 1 298
## 10127 https://udn.com/news/story/6809/4934837 伯克級 1 298
## 10128 https://udn.com/news/story/6809/4934837 利益 1 298
## 10129 https://udn.com/news/story/6809/4934837 吳謙 1 298
## 10130 https://udn.com/news/story/6809/4934837 巡邏艦 1 298
## 10131 https://udn.com/news/story/6809/4934837 快速 1 298
## 10132 https://udn.com/news/story/6809/4934837 扮演 1 298
## 10133 https://udn.com/news/story/6809/4934837 批次 1 298
## 10134 https://udn.com/news/story/6809/4934837 汶萊 1 298
## 10135 https://udn.com/news/story/6809/4934837 私利 1 298
## 10136 https://udn.com/news/story/6809/4934837 並不 1 298
## 10137 https://udn.com/news/story/6809/4934837 並未 1 298
## 10138 https://udn.com/news/story/6809/4934837 例行 1 298
## 10139 https://udn.com/news/story/6809/4934837 周邊 1 298
## 10140 https://udn.com/news/story/6809/4934837 和平 1 298
## 10141 https://udn.com/news/story/6809/4934837 和雙 1 298
## 10142 https://udn.com/news/story/6809/4934837 奉勸 1 298
## 10143 https://udn.com/news/story/6809/4934837 東亞 1 298
## 10144 https://udn.com/news/story/6809/4934837 武力 1 298
## 10145 https://udn.com/news/story/6809/4934837 武器 1 298
## 10146 https://udn.com/news/story/6809/4934837 爭議 1 298
## 10147 https://udn.com/news/story/6809/4934837 返回 1 298
## 10148 https://udn.com/news/story/6809/4934837 阿利 1 298
## 10149 https://udn.com/news/story/6809/4934837 保持 1 298
## 10150 https://udn.com/news/story/6809/4934837 前為 1 298
## 10151 https://udn.com/news/story/6809/4934837 施壓 1 298
## 10152 https://udn.com/news/story/6809/4934837 是極 1 298
## 10153 https://udn.com/news/story/6809/4934837 架次 1 298
## 10154 https://udn.com/news/story/6809/4934837 派出 1 298
## 10155 https://udn.com/news/story/6809/4934837 炫耀 1 298
## 10156 https://udn.com/news/story/6809/4934837 相關 1 298
## 10157 https://udn.com/news/story/6809/4934837 看到 1 298
## 10158 https://udn.com/news/story/6809/4934837 美軍 1 298
## 10159 https://udn.com/news/story/6809/4934837 計畫 1 298
## 10160 https://udn.com/news/story/6809/4934837 軌道 1 298
## 10161 https://udn.com/news/story/6809/4934837 軍隊 1 298
## 10162 https://udn.com/news/story/6809/4934837 軍機 1 298
## 10163 https://udn.com/news/story/6809/4934837 重機槍 1 298
## 10164 https://udn.com/news/story/6809/4934837 風險 1 298
## 10165 https://udn.com/news/story/6809/4934837 飛行 1 298
## 10166 https://udn.com/news/story/6809/4934837 展開 1 298
## 10167 https://udn.com/news/story/6809/4934837 峰會 1 298
## 10168 https://udn.com/news/story/6809/4934837 捍衛 1 298
## 10169 https://udn.com/news/story/6809/4934837 海域 1 298
## 10170 https://udn.com/news/story/6809/4934837 破壞 1 298
## 10171 https://udn.com/news/story/6809/4934837 記者會 1 298
## 10172 https://udn.com/news/story/6809/4934837 起來 1 298
## 10173 https://udn.com/news/story/6809/4934837 起降 1 298
## 10174 https://udn.com/news/story/6809/4934837 停止 1 298
## 10175 https://udn.com/news/story/6809/4934837 國防部 1 298
## 10176 https://udn.com/news/story/6809/4934837 國家主權 1 298
## 10177 https://udn.com/news/story/6809/4934837 國務委員 1 298
## 10178 https://udn.com/news/story/6809/4934837 基特 1 298
## 10179 https://udn.com/news/story/6809/4934837 強化 1 298
## 10180 https://udn.com/news/story/6809/4934837 強調 1 298
## 10181 https://udn.com/news/story/6809/4934837 推手 1 298
## 10182 https://udn.com/news/story/6809/4934837 推高 1 298
## 10183 https://udn.com/news/story/6809/4934837 推動 1 298
## 10184 https://udn.com/news/story/6809/4934837 救助 1 298
## 10185 https://udn.com/news/story/6809/4934837 救援 1 298
## 10186 https://udn.com/news/story/6809/4934837 毫不相干 1 298
## 10187 https://udn.com/news/story/6809/4934837 清晰明確 1 298
## 10188 https://udn.com/news/story/6809/4934837 猜測 1 298
## 10189 https://udn.com/news/story/6809/4934837 現身 1 298
## 10190 https://udn.com/news/story/6809/4934837 現實 1 298
## 10191 https://udn.com/news/story/6809/4934837 理性 1 298
## 10192 https://udn.com/news/story/6809/4934837 第十屆 1 298
## 10193 https://udn.com/news/story/6809/4934837 組織 1 298
## 10194 https://udn.com/news/story/6809/4934837 部署 1 298
## 10195 https://udn.com/news/story/6809/4934837 麥凱恩 1 298
## 10196 https://udn.com/news/story/6809/4934837 麻六甲海 1 298
## 10197 https://udn.com/news/story/6809/4934837 尋常 1 298
## 10198 https://udn.com/news/story/6809/4934837 提供 1 298
## 10199 https://udn.com/news/story/6809/4934837 最大 1 298
## 10200 https://udn.com/news/story/6809/4934837 最新消息 1 298
## 10201 https://udn.com/news/story/6809/4934837 畫面 1 298
## 10202 https://udn.com/news/story/6809/4934837 發言人 1 298
## 10203 https://udn.com/news/story/6809/4934837 發展 1 298
## 10204 https://udn.com/news/story/6809/4934837 進入 1 298
## 10205 https://udn.com/news/story/6809/4934837 開戰 1 298
## 10206 https://udn.com/news/story/6809/4934837 塔克 1 298
## 10207 https://udn.com/news/story/6809/4934837 意外事件 1 298
## 10208 https://udn.com/news/story/6809/4934837 意圖 1 298
## 10209 https://udn.com/news/story/6809/4934837 感知 1 298
## 10210 https://udn.com/news/story/6809/4934837 新聞 1 298
## 10211 https://udn.com/news/story/6809/4934837 會時 1 298
## 10212 https://udn.com/news/story/6809/4934837 極力 1 298
## 10213 https://udn.com/news/story/6809/4934837 準備 1 298
## 10214 https://udn.com/news/story/6809/4934837 當天 1 298
## 10215 https://udn.com/news/story/6809/4934837 經由 1 298
## 10216 https://udn.com/news/story/6809/4934837 肆意 1 298
## 10217 https://udn.com/news/story/6809/4934837 運輸艦 1 298
## 10218 https://udn.com/news/story/6809/4934837 達魯 1 298
## 10219 https://udn.com/news/story/6809/4934837 對此 1 298
## 10220 https://udn.com/news/story/6809/4934837 對華 1 298
## 10221 https://udn.com/news/story/6809/4934837 態度 1 298
## 10222 https://udn.com/news/story/6809/4934837 態勢 1 298
## 10223 https://udn.com/news/story/6809/4934837 演練 1 298
## 10224 https://udn.com/news/story/6809/4934837 維護 1 298
## 10225 https://udn.com/news/story/6809/4934837 緊張 1 298
## 10226 https://udn.com/news/story/6809/4934837 製造 1 298
## 10227 https://udn.com/news/story/6809/4934837 認清 1 298
## 10228 https://udn.com/news/story/6809/4934837 說明 1 298
## 10229 https://udn.com/news/story/6809/4934837 遠征 1 298
## 10230 https://udn.com/news/story/6809/4934837 熱鬧 1 298
## 10231 https://udn.com/news/story/6809/4934837 編隊 1 298
## 10232 https://udn.com/news/story/6809/4934837 衝突 1 298
## 10233 https://udn.com/news/story/6809/4934837 餘艘 1 298
## 10234 https://udn.com/news/story/6809/4934837 器具 1 298
## 10235 https://udn.com/news/story/6809/4934837 導彈 1 298
## 10236 https://udn.com/news/story/6809/4934837 戰略 1 298
## 10237 https://udn.com/news/story/6809/4934837 操作 1 298
## 10238 https://udn.com/news/story/6809/4934837 擔架 1 298
## 10239 https://udn.com/news/story/6809/4934837 橫衝直撞 1 298
## 10240 https://udn.com/news/story/6809/4934837 應對 1 298
## 10241 https://udn.com/news/story/6809/4934837 環球網 1 298
## 10242 https://udn.com/news/story/6809/4934837 聯合 1 298
## 10243 https://udn.com/news/story/6809/4934837 擺著 1 298
## 10244 https://udn.com/news/story/6809/4934837 轉移 1 298
## 10245 https://udn.com/news/story/6809/4934837 穩定 1 298
## 10246 https://udn.com/news/story/6809/4934837 艦上 1 298
## 10247 https://udn.com/news/story/6809/4934837 艦員為 1 298
## 10248 https://udn.com/news/story/6809/4934837 艦載機 1 298
## 10249 https://udn.com/news/story/6809/4934837 轟炸機 1 298
## 10250 https://udn.com/news/story/6809/4934837 驅逐艦 1 298
## 10251 https://udn.com/news/story/6809/4939570 一度 1 203
## 10252 https://udn.com/news/story/6809/4939570 一週 1 203
## 10253 https://udn.com/news/story/6809/4939570 不到 1 203
## 10254 https://udn.com/news/story/6809/4939570 之盾 1 203
## 10255 https://udn.com/news/story/6809/4939570 之間 1 203
## 10256 https://udn.com/news/story/6809/4939570 今天 1 203
## 10257 https://udn.com/news/story/6809/4939570 今年 1 203
## 10258 https://udn.com/news/story/6809/4939570 及馬侃號 1 203
## 10259 https://udn.com/news/story/6809/4939570 友邦 1 203
## 10260 https://udn.com/news/story/6809/4939570 反潛 1 203
## 10261 https://udn.com/news/story/6809/4939570 月底 1 203
## 10262 https://udn.com/news/story/6809/4939570 水面 1 203
## 10263 https://udn.com/news/story/6809/4939570 包含 1 203
## 10264 https://udn.com/news/story/6809/4939570 尼米茲 1 203
## 10265 https://udn.com/news/story/6809/4939570 目標 1 203
## 10266 https://udn.com/news/story/6809/4939570 印太 1 203
## 10267 https://udn.com/news/story/6809/4939570 合法 1 203
## 10268 https://udn.com/news/story/6809/4939570 地區 1 203
## 10269 https://udn.com/news/story/6809/4939570 安提 1 203
## 10270 https://udn.com/news/story/6809/4939570 西太平洋 1 203
## 10271 https://udn.com/news/story/6809/4939570 作戰 1 203
## 10272 https://udn.com/news/story/6809/4939570 兵力 1 203
## 10273 https://udn.com/news/story/6809/4939570 折返 1 203
## 10274 https://udn.com/news/story/6809/4939570 攻擊 1 203
## 10275 https://udn.com/news/story/6809/4939570 防空 1 203
## 10276 https://udn.com/news/story/6809/4939570 防護 1 203
## 10277 https://udn.com/news/story/6809/4939570 使用 1 203
## 10278 https://udn.com/news/story/6809/4939570 例行 1 203
## 10279 https://udn.com/news/story/6809/4939570 兩年 1 203
## 10280 https://udn.com/news/story/6809/4939570 兩度 1 203
## 10281 https://udn.com/news/story/6809/4939570 到達 1 203
## 10282 https://udn.com/news/story/6809/4939570 協同 1 203
## 10283 https://udn.com/news/story/6809/4939570 協議 1 203
## 10284 https://udn.com/news/story/6809/4939570 坦號 1 203
## 10285 https://udn.com/news/story/6809/4939570 延續 1 203
## 10286 https://udn.com/news/story/6809/4939570 所屬 1 203
## 10287 https://udn.com/news/story/6809/4939570 承諾 1 203
## 10288 https://udn.com/news/story/6809/4939570 直升機 1 203
## 10289 https://udn.com/news/story/6809/4939570 空中 1 203
## 10290 https://udn.com/news/story/6809/4939570 表示 1 203
## 10291 https://udn.com/news/story/6809/4939570 促進 1 203
## 10292 https://udn.com/news/story/6809/4939570 保障 1 203
## 10293 https://udn.com/news/story/6809/4939570 前進 1 203
## 10294 https://udn.com/news/story/6809/4939570 勃克級 1 203
## 10295 https://udn.com/news/story/6809/4939570 勇敢 1 203
## 10296 https://udn.com/news/story/6809/4939570 宣布 1 203
## 10297 https://udn.com/news/story/6809/4939570 宣示 1 203
## 10298 https://udn.com/news/story/6809/4939570 建立 1 203
## 10299 https://udn.com/news/story/6809/4939570 持續 1 203
## 10300 https://udn.com/news/story/6809/4939570 指揮官 1 203
## 10301 https://udn.com/news/story/6809/4939570 穿越 1 203
## 10302 https://udn.com/news/story/6809/4939570 美海軍 1 203
## 10303 https://udn.com/news/story/6809/4939570 致力 1 203
## 10304 https://udn.com/news/story/6809/4939570 軍方 1 203
## 10305 https://udn.com/news/story/6809/4939570 軍演 1 203
## 10306 https://udn.com/news/story/6809/4939570 飛行 1 203
## 10307 https://udn.com/news/story/6809/4939570 展示 1 203
## 10308 https://udn.com/news/story/6809/4939570 核子動力 1 203
## 10309 https://udn.com/news/story/6809/4939570 海洋 1 203
## 10310 https://udn.com/news/story/6809/4939570 海域 1 203
## 10311 https://udn.com/news/story/6809/4939570 海爾 1 203
## 10312 https://udn.com/news/story/6809/4939570 航行 1 203
## 10313 https://udn.com/news/story/6809/4939570 訓練 1 203
## 10314 https://udn.com/news/story/6809/4939570 國際 1 203
## 10315 https://udn.com/news/story/6809/4939570 悠久 1 203
## 10316 https://udn.com/news/story/6809/4939570 規格 1 203
## 10317 https://udn.com/news/story/6809/4939570 這支 1 203
## 10318 https://udn.com/news/story/6809/4939570 麻六甲海 1 203
## 10319 https://udn.com/news/story/6809/4939570 備戰狀態 1 203
## 10320 https://udn.com/news/story/6809/4939570 發布 1 203
## 10321 https://udn.com/news/story/6809/4939570 結束 1 203
## 10322 https://udn.com/news/story/6809/4939570 菲律賓海 1 203
## 10323 https://udn.com/news/story/6809/4939570 開放 1 203
## 10324 https://udn.com/news/story/6809/4939570 傳統 1 203
## 10325 https://udn.com/news/story/6809/4939570 盟友 1 203
## 10326 https://udn.com/news/story/6809/4939570 盟國 1 203
## 10327 https://udn.com/news/story/6809/4939570 群正 1 203
## 10328 https://udn.com/news/story/6809/4939570 實力 1 203
## 10329 https://udn.com/news/story/6809/4939570 演習 1 203
## 10330 https://udn.com/news/story/6809/4939570 維科夫 1 203
## 10331 https://udn.com/news/story/6809/4939570 網貼 1 203
## 10332 https://udn.com/news/story/6809/4939570 戰術 1 203
## 10333 https://udn.com/news/story/6809/4939570 整合 1 203
## 10334 https://udn.com/news/story/6809/4939570 隨即 1 203
## 10335 https://udn.com/news/story/6809/4939570 縮時 1 203
## 10336 https://udn.com/news/story/6809/4939570 賽號 1 203
## 10337 https://udn.com/news/story/6809/4939570 穩定 1 203
## 10338 https://udn.com/news/story/6809/4939570 艦載機 1 203
## 10339 https://udn.com/news/story/6809/4939570 攝影 1 203
## 10340 https://udn.com/news/story/6809/4939570 顯示 1 203
## 10341 https://udn.com/news/story/6809/4947150 中國 1 38
## 10342 https://udn.com/news/story/6809/4947150 升級 1 38
## 10343 https://udn.com/news/story/6809/4947150 反對 1 38
## 10344 https://udn.com/news/story/6809/4947150 日本 1 38
## 10345 https://udn.com/news/story/6809/4947150 日本共同社 1 38
## 10346 https://udn.com/news/story/6809/4947150 日本首相 1 38
## 10347 https://udn.com/news/story/6809/4947150 加強 1 38
## 10348 https://udn.com/news/story/6809/4947150 可能 1 38
## 10349 https://udn.com/news/story/6809/4947150 行為 1 38
## 10350 https://udn.com/news/story/6809/4947150 批評 1 38
## 10351 https://udn.com/news/story/6809/4947150 言論 1 38
## 10352 https://udn.com/news/story/6809/4947150 呼籲 1 38
## 10353 https://udn.com/news/story/6809/4947150 和平解決 1 38
## 10354 https://udn.com/news/story/6809/4947150 法治 1 38
## 10355 https://udn.com/news/story/6809/4947150 表示 1 38
## 10356 https://udn.com/news/story/6809/4947150 相悖 1 38
## 10357 https://udn.com/news/story/6809/4947150 相關 1 38
## 10358 https://udn.com/news/story/6809/4947150 軍力 1 38
## 10359 https://udn.com/news/story/6809/4947150 紛爭 1 38
## 10360 https://udn.com/news/story/6809/4947150 針對 1 38
## 10361 https://udn.com/news/story/6809/4947150 國家 1 38
## 10362 https://udn.com/news/story/6809/4947150 強烈 1 38
## 10363 https://udn.com/news/story/6809/4947150 報導 1 38
## 10364 https://udn.com/news/story/6809/4947150 發生 1 38
## 10365 https://udn.com/news/story/6809/4947150 開放性 1 38
## 10366 https://udn.com/news/story/6809/4947150 跡象 1 38
## 10367 https://udn.com/news/story/6809/4947150 緊張局勢 1 38
## 10368 https://udn.com/news/story/6809/4947150 據稱 1 38
## 10369 https://udn.com/news/story/6809/5063760 上有政策 1 450
## 10370 https://udn.com/news/story/6809/5063760 上百 1 450
## 10371 https://udn.com/news/story/6809/5063760 上級 1 450
## 10372 https://udn.com/news/story/6809/5063760 口味 1 450
## 10373 https://udn.com/news/story/6809/5063760 大人物 1 450
## 10374 https://udn.com/news/story/6809/5063760 大家 1 450
## 10375 https://udn.com/news/story/6809/5063760 小艇 1 450
## 10376 https://udn.com/news/story/6809/5063760 小道消息 1 450
## 10377 https://udn.com/news/story/6809/5063760 工作 1 450
## 10378 https://udn.com/news/story/6809/5063760 不可收拾 1 450
## 10379 https://udn.com/news/story/6809/5063760 不是 1 450
## 10380 https://udn.com/news/story/6809/5063760 不要 1 450
## 10381 https://udn.com/news/story/6809/5063760 不會 1 450
## 10382 https://udn.com/news/story/6809/5063760 不認帳 1 450
## 10383 https://udn.com/news/story/6809/5063760 中心 1 450
## 10384 https://udn.com/news/story/6809/5063760 中印 1 450
## 10385 https://udn.com/news/story/6809/5063760 中是 1 450
## 10386 https://udn.com/news/story/6809/5063760 互信 1 450
## 10387 https://udn.com/news/story/6809/5063760 互動 1 450
## 10388 https://udn.com/news/story/6809/5063760 公佈 1 450
## 10389 https://udn.com/news/story/6809/5063760 分享 1 450
## 10390 https://udn.com/news/story/6809/5063760 引發 1 450
## 10391 https://udn.com/news/story/6809/5063760 手法 1 450
## 10392 https://udn.com/news/story/6809/5063760 日前 1 450
## 10393 https://udn.com/news/story/6809/5063760 水域 1 450
## 10394 https://udn.com/news/story/6809/5063760 主導 1 450
## 10395 https://udn.com/news/story/6809/5063760 仔細 1 450
## 10396 https://udn.com/news/story/6809/5063760 以自 1 450
## 10397 https://udn.com/news/story/6809/5063760 加上 1 450
## 10398 https://udn.com/news/story/6809/5063760 另有 1 450
## 10399 https://udn.com/news/story/6809/5063760 只能 1 450
## 10400 https://udn.com/news/story/6809/5063760 平台 1 450
## 10401 https://udn.com/news/story/6809/5063760 打死 1 450
## 10402 https://udn.com/news/story/6809/5063760 玄機 1 450
## 10403 https://udn.com/news/story/6809/5063760 交換 1 450
## 10404 https://udn.com/news/story/6809/5063760 交與 1 450
## 10405 https://udn.com/news/story/6809/5063760 交誼 1 450
## 10406 https://udn.com/news/story/6809/5063760 伙食 1 450
## 10407 https://udn.com/news/story/6809/5063760 同步 1 450
## 10408 https://udn.com/news/story/6809/5063760 回答 1 450
## 10409 https://udn.com/news/story/6809/5063760 回顧 1 450
## 10410 https://udn.com/news/story/6809/5063760 地步 1 450
## 10411 https://udn.com/news/story/6809/5063760 多軌 1 450
## 10412 https://udn.com/news/story/6809/5063760 成熟 1 450
## 10413 https://udn.com/news/story/6809/5063760 有助於 1 450
## 10414 https://udn.com/news/story/6809/5063760 此項 1 450
## 10415 https://udn.com/news/story/6809/5063760 百餘次 1 450
## 10416 https://udn.com/news/story/6809/5063760 西方 1 450
## 10417 https://udn.com/news/story/6809/5063760 何種 1 450
## 10418 https://udn.com/news/story/6809/5063760 利基 1 450
## 10419 https://udn.com/news/story/6809/5063760 找到 1 450
## 10420 https://udn.com/news/story/6809/5063760 更是 1 450
## 10421 https://udn.com/news/story/6809/5063760 更強 1 450
## 10422 https://udn.com/news/story/6809/5063760 更讓人 1 450
## 10423 https://udn.com/news/story/6809/5063760 沙洲 1 450
## 10424 https://udn.com/news/story/6809/5063760 見縫插針 1 450
## 10425 https://udn.com/news/story/6809/5063760 走火 1 450
## 10426 https://udn.com/news/story/6809/5063760 身處 1 450
## 10427 https://udn.com/news/story/6809/5063760 並未 1 450
## 10428 https://udn.com/news/story/6809/5063760 亞洲 1 450
## 10429 https://udn.com/news/story/6809/5063760 依據 1 450
## 10430 https://udn.com/news/story/6809/5063760 具有 1 450
## 10431 https://udn.com/news/story/6809/5063760 到底 1 450
## 10432 https://udn.com/news/story/6809/5063760 到達 1 450
## 10433 https://udn.com/news/story/6809/5063760 協商 1 450
## 10434 https://udn.com/news/story/6809/5063760 協調 1 450
## 10435 https://udn.com/news/story/6809/5063760 定期 1 450
## 10436 https://udn.com/news/story/6809/5063760 所轄 1 450
## 10437 https://udn.com/news/story/6809/5063760 承建 1 450
## 10438 https://udn.com/news/story/6809/5063760 招數 1 450
## 10439 https://udn.com/news/story/6809/5063760 明確 1 450
## 10440 https://udn.com/news/story/6809/5063760 則回 1 450
## 10441 https://udn.com/news/story/6809/5063760 前提 1 450
## 10442 https://udn.com/news/story/6809/5063760 思維 1 450
## 10443 https://udn.com/news/story/6809/5063760 指出 1 450
## 10444 https://udn.com/news/story/6809/5063760 政府 1 450
## 10445 https://udn.com/news/story/6809/5063760 政治指導 1 450
## 10446 https://udn.com/news/story/6809/5063760 施放 1 450
## 10447 https://udn.com/news/story/6809/5063760 甚有 1 450
## 10448 https://udn.com/news/story/6809/5063760 甚或 1 450
## 10449 https://udn.com/news/story/6809/5063760 相互 1 450
## 10450 https://udn.com/news/story/6809/5063760 相互交換 1 450
## 10451 https://udn.com/news/story/6809/5063760 相片 1 450
## 10452 https://udn.com/news/story/6809/5063760 相當 1 450
## 10453 https://udn.com/news/story/6809/5063760 相遇 1 450
## 10454 https://udn.com/news/story/6809/5063760 相對 1 450
## 10455 https://udn.com/news/story/6809/5063760 紀律 1 450
## 10456 https://udn.com/news/story/6809/5063760 約制 1 450
## 10457 https://udn.com/news/story/6809/5063760 美國 1 450
## 10458 https://udn.com/news/story/6809/5063760 耐人尋味 1 450
## 10459 https://udn.com/news/story/6809/5063760 胡亂 1 450
## 10460 https://udn.com/news/story/6809/5063760 要求 1 450
## 10461 https://udn.com/news/story/6809/5063760 要給 1 450
## 10462 https://udn.com/news/story/6809/5063760 計畫 1 450
## 10463 https://udn.com/news/story/6809/5063760 負面 1 450
## 10464 https://udn.com/news/story/6809/5063760 負責 1 450
## 10465 https://udn.com/news/story/6809/5063760 軌跡 1 450
## 10466 https://udn.com/news/story/6809/5063760 軍事 1 450
## 10467 https://udn.com/news/story/6809/5063760 倡議 1 450
## 10468 https://udn.com/news/story/6809/5063760 島礁 1 450
## 10469 https://udn.com/news/story/6809/5063760 海事 1 450
## 10470 https://udn.com/news/story/6809/5063760 海警 1 450
## 10471 https://udn.com/news/story/6809/5063760 特定 1 450
## 10472 https://udn.com/news/story/6809/5063760 留下 1 450
## 10473 https://udn.com/news/story/6809/5063760 能量 1 450
## 10474 https://udn.com/news/story/6809/5063760 訊息 1 450
## 10475 https://udn.com/news/story/6809/5063760 訓令 1 450
## 10476 https://udn.com/news/story/6809/5063760 起舞 1 450
## 10477 https://udn.com/news/story/6809/5063760 配合 1 450
## 10478 https://udn.com/news/story/6809/5063760 偵巡 1 450
## 10479 https://udn.com/news/story/6809/5063760 區域 1 450
## 10480 https://udn.com/news/story/6809/5063760 國民 1 450
## 10481 https://udn.com/news/story/6809/5063760 國家 1 450
## 10482 https://udn.com/news/story/6809/5063760 國際 1 450
## 10483 https://udn.com/news/story/6809/5063760 執行 1 450
## 10484 https://udn.com/news/story/6809/5063760 執法 1 450
## 10485 https://udn.com/news/story/6809/5063760 基層 1 450
## 10486 https://udn.com/news/story/6809/5063760 康暗沙 1 450
## 10487 https://udn.com/news/story/6809/5063760 從未 1 450
## 10488 https://udn.com/news/story/6809/5063760 情勢 1 450
## 10489 https://udn.com/news/story/6809/5063760 情緒 1 450
## 10490 https://udn.com/news/story/6809/5063760 情誼 1 450
## 10491 https://udn.com/news/story/6809/5063760 接觸 1 450
## 10492 https://udn.com/news/story/6809/5063760 深深 1 450
## 10493 https://udn.com/news/story/6809/5063760 牽著 1 450
## 10494 https://udn.com/news/story/6809/5063760 現身 1 450
## 10495 https://udn.com/news/story/6809/5063760 現場 1 450
## 10496 https://udn.com/news/story/6809/5063760 理性 1 450
## 10497 https://udn.com/news/story/6809/5063760 理智 1 450
## 10498 https://udn.com/news/story/6809/5063760 理想 1 450
## 10499 https://udn.com/news/story/6809/5063760 理解 1 450
## 10500 https://udn.com/news/story/6809/5063760 產生 1 450
## 10501 https://udn.com/news/story/6809/5063760 組織 1 450
## 10502 https://udn.com/news/story/6809/5063760 規則 1 450
## 10503 https://udn.com/news/story/6809/5063760 設定 1 450
## 10504 https://udn.com/news/story/6809/5063760 透明 1 450
## 10505 https://udn.com/news/story/6809/5063760 透露 1 450
## 10506 https://udn.com/news/story/6809/5063760 通訊 1 450
## 10507 https://udn.com/news/story/6809/5063760 造船廠 1 450
## 10508 https://udn.com/news/story/6809/5063760 傍靠 1 450
## 10509 https://udn.com/news/story/6809/5063760 喊話 1 450
## 10510 https://udn.com/news/story/6809/5063760 換換 1 450
## 10511 https://udn.com/news/story/6809/5063760 揭露出 1 450
## 10512 https://udn.com/news/story/6809/5063760 最後 1 450
## 10513 https://udn.com/news/story/6809/5063760 棘手 1 450
## 10514 https://udn.com/news/story/6809/5063760 渲染 1 450
## 10515 https://udn.com/news/story/6809/5063760 無意 1 450
## 10516 https://udn.com/news/story/6809/5063760 發生 1 450
## 10517 https://udn.com/news/story/6809/5063760 發生意外 1 450
## 10518 https://udn.com/news/story/6809/5063760 發展 1 450
## 10519 https://udn.com/news/story/6809/5063760 發揮 1 450
## 10520 https://udn.com/news/story/6809/5063760 貼文 1 450
## 10521 https://udn.com/news/story/6809/5063760 超過 1 450
## 10522 https://udn.com/news/story/6809/5063760 軸向 1 450
## 10523 https://udn.com/news/story/6809/5063760 會心一笑 1 450
## 10524 https://udn.com/news/story/6809/5063760 極為 1 450
## 10525 https://udn.com/news/story/6809/5063760 極高 1 450
## 10526 https://udn.com/news/story/6809/5063760 照片 1 450
## 10527 https://udn.com/news/story/6809/5063760 葫蘆 1 450
## 10528 https://udn.com/news/story/6809/5063760 解決問題 1 450
## 10529 https://udn.com/news/story/6809/5063760 資訊 1 450
## 10530 https://udn.com/news/story/6809/5063760 較勁 1 450
## 10531 https://udn.com/news/story/6809/5063760 運用 1 450
## 10532 https://udn.com/news/story/6809/5063760 電文 1 450
## 10533 https://udn.com/news/story/6809/5063760 頒佈 1 450
## 10534 https://udn.com/news/story/6809/5063760 圖像 1 450
## 10535 https://udn.com/news/story/6809/5063760 對外 1 450
## 10536 https://udn.com/news/story/6809/5063760 對峙 1 450
## 10537 https://udn.com/news/story/6809/5063760 態度 1 450
## 10538 https://udn.com/news/story/6809/5063760 維持 1 450
## 10539 https://udn.com/news/story/6809/5063760 網際網路 1 450
## 10540 https://udn.com/news/story/6809/5063760 膏藥 1 450
## 10541 https://udn.com/news/story/6809/5063760 遠較 1 450
## 10542 https://udn.com/news/story/6809/5063760 領導階層 1 450
## 10543 https://udn.com/news/story/6809/5063760 鼻子走 1 450
## 10544 https://udn.com/news/story/6809/5063760 層級 1 450
## 10545 https://udn.com/news/story/6809/5063760 模式 1 450
## 10546 https://udn.com/news/story/6809/5063760 樣態 1 450
## 10547 https://udn.com/news/story/6809/5063760 確實 1 450
## 10548 https://udn.com/news/story/6809/5063760 膠舟 1 450
## 10549 https://udn.com/news/story/6809/5063760 衛星 1 450
## 10550 https://udn.com/news/story/6809/5063760 衝撞 1 450
## 10551 https://udn.com/news/story/6809/5063760 課題 1 450
## 10552 https://udn.com/news/story/6809/5063760 遭遇 1 450
## 10553 https://udn.com/news/story/6809/5063760 鄰近 1 450
## 10554 https://udn.com/news/story/6809/5063760 儘量 1 450
## 10555 https://udn.com/news/story/6809/5063760 戰略 1 450
## 10556 https://udn.com/news/story/6809/5063760 操弄 1 450
## 10557 https://udn.com/news/story/6809/5063760 整個 1 450
## 10558 https://udn.com/news/story/6809/5063760 隨之 1 450
## 10559 https://udn.com/news/story/6809/5063760 頻頻 1 450
## 10560 https://udn.com/news/story/6809/5063760 懂得 1 450
## 10561 https://udn.com/news/story/6809/5063760 應對 1 450
## 10562 https://udn.com/news/story/6809/5063760 擦槍 1 450
## 10563 https://udn.com/news/story/6809/5063760 檢視 1 450
## 10564 https://udn.com/news/story/6809/5063760 總是 1 450
## 10565 https://udn.com/news/story/6809/5063760 臉書 1 450
## 10566 https://udn.com/news/story/6809/5063760 還曾 1 450
## 10567 https://udn.com/news/story/6809/5063760 檯面 1 450
## 10568 https://udn.com/news/story/6809/5063760 轉述 1 450
## 10569 https://udn.com/news/story/6809/5063760 轉發 1 450
## 10570 https://udn.com/news/story/6809/5063760 穩定 1 450
## 10571 https://udn.com/news/story/6809/5063760 邊界 1 450
## 10572 https://udn.com/news/story/6809/5063760 關切 1 450
## 10573 https://udn.com/news/story/6809/5063760 嚴格 1 450
## 10574 https://udn.com/news/story/6809/5063760 攔截 1 450
## 10575 https://udn.com/news/story/6809/5063760 覺得 1 450
## 10576 https://udn.com/news/story/6809/5063760 議題 1 450
## 10577 https://udn.com/news/story/6809/5063760 攝取 1 450
## 10578 https://udn.com/news/story/6809/5063760 攪局 1 450
## 10579 https://udn.com/news/story/6809/5063760 顯現出 1 450
## 10580 https://udn.com/news/story/6809/5063760 觀察 1 450
## 10581 https://udn.com/news/story/6809/5123283 一再 1 319
## 10582 https://udn.com/news/story/6809/5123283 一些 1 319
## 10583 https://udn.com/news/story/6809/5123283 一起 1 319
## 10584 https://udn.com/news/story/6809/5123283 一種 1 319
## 10585 https://udn.com/news/story/6809/5123283 一篇 1 319
## 10586 https://udn.com/news/story/6809/5123283 上述 1 319
## 10587 https://udn.com/news/story/6809/5123283 大多數 1 319
## 10588 https://udn.com/news/story/6809/5123283 大城 1 319
## 10589 https://udn.com/news/story/6809/5123283 山區 1 319
## 10590 https://udn.com/news/story/6809/5123283 不明 1 319
## 10591 https://udn.com/news/story/6809/5123283 不要 1 319
## 10592 https://udn.com/news/story/6809/5123283 中印 1 319
## 10593 https://udn.com/news/story/6809/5123283 之後 1 319
## 10594 https://udn.com/news/story/6809/5123283 介入 1 319
## 10595 https://udn.com/news/story/6809/5123283 公斤 1 319
## 10596 https://udn.com/news/story/6809/5123283 分析 1 319
## 10597 https://udn.com/news/story/6809/5123283 升級 1 319
## 10598 https://udn.com/news/story/6809/5123283 反艦 1 319
## 10599 https://udn.com/news/story/6809/5123283 太平洋地區 1 319
## 10600 https://udn.com/news/story/6809/5123283 日益 1 319
## 10601 https://udn.com/news/story/6809/5123283 主要 1 319
## 10602 https://udn.com/news/story/6809/5123283 主權 1 319
## 10603 https://udn.com/news/story/6809/5123283 出現 1 319
## 10604 https://udn.com/news/story/6809/5123283 包括 1 319
## 10605 https://udn.com/news/story/6809/5123283 召開 1 319
## 10606 https://udn.com/news/story/6809/5123283 可採 1 319
## 10607 https://udn.com/news/story/6809/5123283 外界 1 319
## 10608 https://udn.com/news/story/6809/5123283 平衡 1 319
## 10609 https://udn.com/news/story/6809/5123283 打擊 1 319
## 10610 https://udn.com/news/story/6809/5123283 正在 1 319
## 10611 https://udn.com/news/story/6809/5123283 交付 1 319
## 10612 https://udn.com/news/story/6809/5123283 交付給 1 319
## 10613 https://udn.com/news/story/6809/5123283 交易 1 319
## 10614 https://udn.com/news/story/6809/5123283 全面 1 319
## 10615 https://udn.com/news/story/6809/5123283 共同 1 319
## 10616 https://udn.com/news/story/6809/5123283 共同開發 1 319
## 10617 https://udn.com/news/story/6809/5123283 印太 1 319
## 10618 https://udn.com/news/story/6809/5123283 印尼 1 319
## 10619 https://udn.com/news/story/6809/5123283 印越 1 319
## 10620 https://udn.com/news/story/6809/5123283 同意 1 319
## 10621 https://udn.com/news/story/6809/5123283 在內 1 319
## 10622 https://udn.com/news/story/6809/5123283 地區 1 319
## 10623 https://udn.com/news/story/6809/5123283 成都 1 319
## 10624 https://udn.com/news/story/6809/5123283 希望 1 319
## 10625 https://udn.com/news/story/6809/5123283 把布 1 319
## 10626 https://udn.com/news/story/6809/5123283 攻擊 1 319
## 10627 https://udn.com/news/story/6809/5123283 系統 1 319
## 10628 https://udn.com/news/story/6809/5123283 迄今 1 319
## 10629 https://udn.com/news/story/6809/5123283 防禦 1 319
## 10630 https://udn.com/news/story/6809/5123283 亞洲 1 319
## 10631 https://udn.com/news/story/6809/5123283 協定 1 319
## 10632 https://udn.com/news/story/6809/5123283 和平 1 319
## 10633 https://udn.com/news/story/6809/5123283 官方 1 319
## 10634 https://udn.com/news/story/6809/5123283 定位 1 319
## 10635 https://udn.com/news/story/6809/5123283 延長 1 319
## 10636 https://udn.com/news/story/6809/5123283 拉達克 1 319
## 10637 https://udn.com/news/story/6809/5123283 明確 1 319
## 10638 https://udn.com/news/story/6809/5123283 東莞 1 319
## 10639 https://udn.com/news/story/6809/5123283 東部 1 319
## 10640 https://udn.com/news/story/6809/5123283 武漢 1 319
## 10641 https://udn.com/news/story/6809/5123283 注意力 1 319
## 10642 https://udn.com/news/story/6809/5123283 爭端 1 319
## 10643 https://udn.com/news/story/6809/5123283 表示 1 319
## 10644 https://udn.com/news/story/6809/5123283 侵略 1 319
## 10645 https://udn.com/news/story/6809/5123283 信貸 1 319
## 10646 https://udn.com/news/story/6809/5123283 削弱 1 319
## 10647 https://udn.com/news/story/6809/5123283 垂直 1 319
## 10648 https://udn.com/news/story/6809/5123283 城市 1 319
## 10649 https://udn.com/news/story/6809/5123283 威脅 1 319
## 10650 https://udn.com/news/story/6809/5123283 宣布 1 319
## 10651 https://udn.com/news/story/6809/5123283 建立 1 319
## 10652 https://udn.com/news/story/6809/5123283 是否 1 319
## 10653 https://udn.com/news/story/6809/5123283 活動 1 319
## 10654 https://udn.com/news/story/6809/5123283 紅線 1 319
## 10655 https://udn.com/news/story/6809/5123283 背景 1 319
## 10656 https://udn.com/news/story/6809/5123283 致命 1 319
## 10657 https://udn.com/news/story/6809/5123283 軍事 1 319
## 10658 https://udn.com/news/story/6809/5123283 重慶 1 319
## 10659 https://udn.com/news/story/6809/5123283 音速 1 319
## 10660 https://udn.com/news/story/6809/5123283 飛行速度 1 319
## 10661 https://udn.com/news/story/6809/5123283 原因 1 319
## 10662 https://udn.com/news/story/6809/5123283 時報 1 319
## 10663 https://udn.com/news/story/6809/5123283 核子彈頭 1 319
## 10664 https://udn.com/news/story/6809/5123283 泰國 1 319
## 10665 https://udn.com/news/story/6809/5123283 海上 1 319
## 10666 https://udn.com/news/story/6809/5123283 航空母艦 1 319
## 10667 https://udn.com/news/story/6809/5123283 馬赫 1 319
## 10668 https://udn.com/news/story/6809/5123283 高峰 1 319
## 10669 https://udn.com/news/story/6809/5123283 動力 1 319
## 10670 https://udn.com/news/story/6809/5123283 國防 1 319
## 10671 https://udn.com/news/story/6809/5123283 國家 1 319
## 10672 https://udn.com/news/story/6809/5123283 專家 1 319
## 10673 https://udn.com/news/story/6809/5123283 常規 1 319
## 10674 https://udn.com/news/story/6809/5123283 強化 1 319
## 10675 https://udn.com/news/story/6809/5123283 採購 1 319
## 10676 https://udn.com/news/story/6809/5123283 深圳 1 319
## 10677 https://udn.com/news/story/6809/5123283 清單 1 319
## 10678 https://udn.com/news/story/6809/5123283 現有 1 319
## 10679 https://udn.com/news/story/6809/5123283 理由 1 319
## 10680 https://udn.com/news/story/6809/5123283 產生 1 319
## 10681 https://udn.com/news/story/6809/5123283 移開 1 319
## 10682 https://udn.com/news/story/6809/5123283 船艦 1 319
## 10683 https://udn.com/news/story/6809/5123283 透過 1 319
## 10684 https://udn.com/news/story/6809/5123283 這款 1 319
## 10685 https://udn.com/news/story/6809/5123283 這項 1 319
## 10686 https://udn.com/news/story/6809/5123283 陷入僵局 1 319
## 10687 https://udn.com/news/story/6809/5123283 陸上 1 319
## 10688 https://udn.com/news/story/6809/5123283 陸地 1 319
## 10689 https://udn.com/news/story/6809/5123283 喜瑪拉雅 1 319
## 10690 https://udn.com/news/story/6809/5123283 尋求 1 319
## 10691 https://udn.com/news/story/6809/5123283 最佳 1 319
## 10692 https://udn.com/news/story/6809/5123283 最新 1 319
## 10693 https://udn.com/news/story/6809/5123283 無法 1 319
## 10694 https://udn.com/news/story/6809/5123283 菲律賓 1 319
## 10695 https://udn.com/news/story/6809/5123283 評論 1 319
## 10696 https://udn.com/news/story/6809/5123283 距離 1 319
## 10697 https://udn.com/news/story/6809/5123283 進行 1 319
## 10698 https://udn.com/news/story/6809/5123283 傾斜 1 319
## 10699 https://udn.com/news/story/6809/5123283 意味著 1 319
## 10700 https://udn.com/news/story/6809/5123283 新加坡 1 319
## 10701 https://udn.com/news/story/6809/5123283 盟友 1 319
## 10702 https://udn.com/news/story/6809/5123283 解決 1 319
## 10703 https://udn.com/news/story/6809/5123283 達成 1 319
## 10704 https://udn.com/news/story/6809/5123283 預測 1 319
## 10705 https://udn.com/news/story/6809/5123283 夥伴關係 1 319
## 10706 https://udn.com/news/story/6809/5123283 對布 1 319
## 10707 https://udn.com/news/story/6809/5123283 對抗 1 319
## 10708 https://udn.com/news/story/6809/5123283 精準 1 319
## 10709 https://udn.com/news/story/6809/5123283 精準度 1 319
## 10710 https://udn.com/news/story/6809/5123283 維護 1 319
## 10711 https://udn.com/news/story/6809/5123283 領袖 1 319
## 10712 https://udn.com/news/story/6809/5123283 億美元 1 319
## 10713 https://udn.com/news/story/6809/5123283 廣州 1 319
## 10714 https://udn.com/news/story/6809/5123283 廣泛 1 319
## 10715 https://udn.com/news/story/6809/5123283 標誌 1 319
## 10716 https://udn.com/news/story/6809/5123283 潛艦 1 319
## 10717 https://udn.com/news/story/6809/5123283 踩到 1 319
## 10718 https://udn.com/news/story/6809/5123283 戰略性 1 319
## 10719 https://udn.com/news/story/6809/5123283 戰機 1 319
## 10720 https://udn.com/news/story/6809/5123283 擔心 1 319
## 10721 https://udn.com/news/story/6809/5123283 遲未 1 319
## 10722 https://udn.com/news/story/6809/5123283 選擇 1 319
## 10723 https://udn.com/news/story/6809/5123283 擊中目標 1 319
## 10724 https://udn.com/news/story/6809/5123283 繁榮 1 319
## 10725 https://udn.com/news/story/6809/5123283 聲索國 1 319
## 10726 https://udn.com/news/story/6809/5123283 避免 1 319
## 10727 https://udn.com/news/story/6809/5123283 擴張 1 319
## 10728 https://udn.com/news/story/6809/5123283 轉移 1 319
## 10729 https://udn.com/news/story/6809/5123283 雙方同意 1 319
## 10730 https://udn.com/news/story/6809/5123283 額度 1 319
## 10731 https://udn.com/news/story/6809/5123283 關切 1 319
## 10732 https://udn.com/news/story/6809/5123283 願景 1 319
## 10733 https://udn.com/news/story/6809/5123283 攔截 1 319
## 10734 https://udn.com/news/story/6809/5123283 警告 1 319
## 10735 https://udn.com/news/story/6809/5123283 攜帶 1 319
## 10736 https://udn.com/news/story/6809/5123283 權力 1 319
## 10737 https://udn.com/news/story/6809/5217307 一名 1 66
## 10738 https://udn.com/news/story/6809/5217307 一週 1 66
## 10739 https://udn.com/news/story/6809/5217307 人員 1 66
## 10740 https://udn.com/news/story/6809/5217307 不曾 1 66
## 10741 https://udn.com/news/story/6809/5217307 不願 1 66
## 10742 https://udn.com/news/story/6809/5217307 中國人民解放軍海軍 1 66
## 10743 https://udn.com/news/story/6809/5217307 今天 1 66
## 10744 https://udn.com/news/story/6809/5217307 太平洋 1 66
## 10745 https://udn.com/news/story/6809/5217307 北京 1 66
## 10746 https://udn.com/news/story/6809/5217307 司令部 1 66
## 10747 https://udn.com/news/story/6809/5217307 此舉 1 66
## 10748 https://udn.com/news/story/6809/5217307 行為 1 66
## 10749 https://udn.com/news/story/6809/5217307 行動 1 66
## 10750 https://udn.com/news/story/6809/5217307 並未 1 66
## 10751 https://udn.com/news/story/6809/5217307 具名 1 66
## 10752 https://udn.com/news/story/6809/5217307 官員 1 66
## 10753 https://udn.com/news/story/6809/5217307 所有 1 66
## 10754 https://udn.com/news/story/6809/5217307 空軍 1 66
## 10755 https://udn.com/news/story/6809/5217307 侵略 1 66
## 10756 https://udn.com/news/story/6809/5217307 南海 1 66
## 10757 https://udn.com/news/story/6809/5217307 威脅 1 66
## 10758 https://udn.com/news/story/6809/5217307 美軍 1 66
## 10759 https://udn.com/news/story/6809/5217307 軍方 1 66
## 10760 https://udn.com/news/story/6809/5217307 軍機 1 66
## 10761 https://udn.com/news/story/6809/5217307 海里 1 66
## 10762 https://udn.com/news/story/6809/5217307 破壞 1 66
## 10763 https://udn.com/news/story/6809/5217307 區域 1 66
## 10764 https://udn.com/news/story/6809/5217307 密切 1 66
## 10765 https://udn.com/news/story/6809/5217307 從不 1 66
## 10766 https://udn.com/news/story/6809/5217307 符合 1 66
## 10767 https://udn.com/news/story/6809/5217307 透露 1 66
## 10768 https://udn.com/news/story/6809/5217307 報導 1 66
## 10769 https://udn.com/news/story/6809/5217307 距離 1 66
## 10770 https://udn.com/news/story/6809/5217307 進入 1 66
## 10771 https://udn.com/news/story/6809/5217307 當局 1 66
## 10772 https://udn.com/news/story/6809/5217307 路透社 1 66
## 10773 https://udn.com/news/story/6809/5217307 過去 1 66
## 10774 https://udn.com/news/story/6809/5217307 構成 1 66
## 10775 https://udn.com/news/story/6809/5217307 構成威脅 1 66
## 10776 https://udn.com/news/story/6809/5217307 監控 1 66
## 10777 https://udn.com/news/story/6809/5217307 模式 1 66
## 10778 https://udn.com/news/story/6809/5217307 範圍 1 66
## 10779 https://udn.com/news/story/6809/5217307 聲明 1 66
## 10780 https://udn.com/news/story/6809/5217307 穩定 1 66
## 10781 https://udn.com/news/story/6809/5217307 羅斯福 1 66
## 10782 https://udn.com/news/story/6809/5217307 艦上 1 66
## 10783 https://udn.com/news/story/6809/5217399 一名 1 102
## 10784 https://udn.com/news/story/6809/5217399 一些 1 102
## 10785 https://udn.com/news/story/6809/5217399 一帶 1 102
## 10786 https://udn.com/news/story/6809/5217399 一週 1 102
## 10787 https://udn.com/news/story/6809/5217399 人員 1 102
## 10788 https://udn.com/news/story/6809/5217399 不願 1 102
## 10789 https://udn.com/news/story/6809/5217399 中方 1 102
## 10790 https://udn.com/news/story/6809/5217399 中國人民解放軍海軍 1 102
## 10791 https://udn.com/news/story/6809/5217399 今天 1 102
## 10792 https://udn.com/news/story/6809/5217399 允許 1 102
## 10793 https://udn.com/news/story/6809/5217399 水道 1 102
## 10794 https://udn.com/news/story/6809/5217399 任務 1 102
## 10795 https://udn.com/news/story/6809/5217399 地方 1 102
## 10796 https://udn.com/news/story/6809/5217399 作戰 1 102
## 10797 https://udn.com/news/story/6809/5217399 決心 1 102
## 10798 https://udn.com/news/story/6809/5217399 並未 1 102
## 10799 https://udn.com/news/story/6809/5217399 具名 1 102
## 10800 https://udn.com/news/story/6809/5217399 官員 1 102
## 10801 https://udn.com/news/story/6809/5217399 所有 1 102
## 10802 https://udn.com/news/story/6809/5217399 所謂 1 102
## 10803 https://udn.com/news/story/6809/5217399 空軍 1 102
## 10804 https://udn.com/news/story/6809/5217399 威脅 1 102
## 10805 https://udn.com/news/story/6809/5217399 持續 1 102
## 10806 https://udn.com/news/story/6809/5217399 軍方 1 102
## 10807 https://udn.com/news/story/6809/5217399 軍機 1 102
## 10808 https://udn.com/news/story/6809/5217399 飛行 1 102
## 10809 https://udn.com/news/story/6809/5217399 展現 1 102
## 10810 https://udn.com/news/story/6809/5217399 島嶼 1 102
## 10811 https://udn.com/news/story/6809/5217399 海里 1 102
## 10812 https://udn.com/news/story/6809/5217399 國際 1 102
## 10813 https://udn.com/news/story/6809/5217399 國際法 1 102
## 10814 https://udn.com/news/story/6809/5217399 執行 1 102
## 10815 https://udn.com/news/story/6809/5217399 密切 1 102
## 10816 https://udn.com/news/story/6809/5217399 船艦 1 102
## 10817 https://udn.com/news/story/6809/5217399 透過 1 102
## 10818 https://udn.com/news/story/6809/5217399 透露 1 102
## 10819 https://udn.com/news/story/6809/5217399 報導 1 102
## 10820 https://udn.com/news/story/6809/5217399 距離 1 102
## 10821 https://udn.com/news/story/6809/5217399 路透社 1 102
## 10822 https://udn.com/news/story/6809/5217399 運作 1 102
## 10823 https://udn.com/news/story/6809/5217399 過去 1 102
## 10824 https://udn.com/news/story/6809/5217399 構成 1 102
## 10825 https://udn.com/news/story/6809/5217399 構成威脅 1 102
## 10826 https://udn.com/news/story/6809/5217399 監控 1 102
## 10827 https://udn.com/news/story/6809/5217399 範圍 1 102
## 10828 https://udn.com/news/story/6809/5217399 駛近 1 102
## 10829 https://udn.com/news/story/6809/5217399 聲明 1 102
## 10830 https://udn.com/news/story/6809/5217399 聲稱 1 102
## 10831 https://udn.com/news/story/6809/5217399 藉由 1 102
## 10832 https://udn.com/news/story/6809/5217399 羅斯福 1 102
## 10833 https://udn.com/news/story/6809/5217399 繼續 1 102
## 10834 https://udn.com/news/story/6809/5217399 艦上 1 102
## 10835 https://udn.com/news/story/6809/5225330 一種 1 260
## 10836 https://udn.com/news/story/6809/5225330 一艘 1 260
## 10837 https://udn.com/news/story/6809/5225330 一點 1 260
## 10838 https://udn.com/news/story/6809/5225330 人民日報 1 260
## 10839 https://udn.com/news/story/6809/5225330 人員 1 260
## 10840 https://udn.com/news/story/6809/5225330 上述 1 260
## 10841 https://udn.com/news/story/6809/5225330 不同 1 260
## 10842 https://udn.com/news/story/6809/5225330 不遠萬里 1 260
## 10843 https://udn.com/news/story/6809/5225330 不需 1 260
## 10844 https://udn.com/news/story/6809/5225330 中美 1 260
## 10845 https://udn.com/news/story/6809/5225330 之間 1 260
## 10846 https://udn.com/news/story/6809/5225330 內容 1 260
## 10847 https://udn.com/news/story/6809/5225330 公里 1 260
## 10848 https://udn.com/news/story/6809/5225330 反駁 1 260
## 10849 https://udn.com/news/story/6809/5225330 方式 1 260
## 10850 https://udn.com/news/story/6809/5225330 日前 1 260
## 10851 https://udn.com/news/story/6809/5225330 以外 1 260
## 10852 https://udn.com/news/story/6809/5225330 加以 1 260
## 10853 https://udn.com/news/story/6809/5225330 加密 1 260
## 10854 https://udn.com/news/story/6809/5225330 台灣 1 260
## 10855 https://udn.com/news/story/6809/5225330 外媒 1 260
## 10856 https://udn.com/news/story/6809/5225330 打擊 1 260
## 10857 https://udn.com/news/story/6809/5225330 正常 1 260
## 10858 https://udn.com/news/story/6809/5225330 任務 1 260
## 10859 https://udn.com/news/story/6809/5225330 共軍 1 260
## 10860 https://udn.com/news/story/6809/5225330 各國 1 260
## 10861 https://udn.com/news/story/6809/5225330 地面 1 260
## 10862 https://udn.com/news/story/6809/5225330 多半 1 260
## 10863 https://udn.com/news/story/6809/5225330 自由 1 260
## 10864 https://udn.com/news/story/6809/5225330 但據 1 260
## 10865 https://udn.com/news/story/6809/5225330 即可 1 260
## 10866 https://udn.com/news/story/6809/5225330 完全 1 260
## 10867 https://udn.com/news/story/6809/5225330 批評 1 260
## 10868 https://udn.com/news/story/6809/5225330 攻擊方式 1 260
## 10869 https://udn.com/news/story/6809/5225330 更將 1 260
## 10870 https://udn.com/news/story/6809/5225330 防空 1 260
## 10871 https://udn.com/news/story/6809/5225330 並向 1 260
## 10872 https://udn.com/news/story/6809/5225330 使用 1 260
## 10873 https://udn.com/news/story/6809/5225330 具名 1 260
## 10874 https://udn.com/news/story/6809/5225330 命令 1 260
## 10875 https://udn.com/news/story/6809/5225330 官媒 1 260
## 10876 https://udn.com/news/story/6809/5225330 武器 1 260
## 10877 https://udn.com/news/story/6809/5225330 炒作 1 260
## 10878 https://udn.com/news/story/6809/5225330 近日 1 260
## 10879 https://udn.com/news/story/6809/5225330 金融時報 1 260
## 10880 https://udn.com/news/story/6809/5225330 附近 1 260
## 10881 https://udn.com/news/story/6809/5225330 保持 1 260
## 10882 https://udn.com/news/story/6809/5225330 拜登 1 260
## 10883 https://udn.com/news/story/6809/5225330 持續 1 260
## 10884 https://udn.com/news/story/6809/5225330 指令 1 260
## 10885 https://udn.com/news/story/6809/5225330 指責 1 260
## 10886 https://udn.com/news/story/6809/5225330 挑釁 1 260
## 10887 https://udn.com/news/story/6809/5225330 是否 1 260
## 10888 https://udn.com/news/story/6809/5225330 活動 1 260
## 10889 https://udn.com/news/story/6809/5225330 相關 1 260
## 10890 https://udn.com/news/story/6809/5225330 英國 1 260
## 10891 https://udn.com/news/story/6809/5225330 要說 1 260
## 10892 https://udn.com/news/story/6809/5225330 軌跡 1 260
## 10893 https://udn.com/news/story/6809/5225330 軍方 1 260
## 10894 https://udn.com/news/story/6809/5225330 軍隊 1 260
## 10895 https://udn.com/news/story/6809/5225330 剖面 1 260
## 10896 https://udn.com/news/story/6809/5225330 座艙 1 260
## 10897 https://udn.com/news/story/6809/5225330 根本 1 260
## 10898 https://udn.com/news/story/6809/5225330 特定 1 260
## 10899 https://udn.com/news/story/6809/5225330 破壞 1 260
## 10900 https://udn.com/news/story/6809/5225330 站不住腳 1 260
## 10901 https://udn.com/news/story/6809/5225330 航母 1 260
## 10902 https://udn.com/news/story/6809/5225330 航至 1 260
## 10903 https://udn.com/news/story/6809/5225330 航行 1 260
## 10904 https://udn.com/news/story/6809/5225330 訊息 1 260
## 10905 https://udn.com/news/story/6809/5225330 做出 1 260
## 10906 https://udn.com/news/story/6809/5225330 做到 1 260
## 10907 https://udn.com/news/story/6809/5225330 偵察機 1 260
## 10908 https://udn.com/news/story/6809/5225330 動作 1 260
## 10909 https://udn.com/news/story/6809/5225330 基本 1 260
## 10910 https://udn.com/news/story/6809/5225330 密度 1 260
## 10911 https://udn.com/news/story/6809/5225330 情報 1 260
## 10912 https://udn.com/news/story/6809/5225330 情報系統 1 260
## 10913 https://udn.com/news/story/6809/5225330 敏感 1 260
## 10914 https://udn.com/news/story/6809/5225330 毫不掩飾 1 260
## 10915 https://udn.com/news/story/6809/5225330 牽強 1 260
## 10916 https://udn.com/news/story/6809/5225330 這和 1 260
## 10917 https://udn.com/news/story/6809/5225330 通話器 1 260
## 10918 https://udn.com/news/story/6809/5225330 媒體 1 260
## 10919 https://udn.com/news/story/6809/5225330 就職 1 260
## 10920 https://udn.com/news/story/6809/5225330 幾乎 1 260
## 10921 https://udn.com/news/story/6809/5225330 提供 1 260
## 10922 https://udn.com/news/story/6809/5225330 期間 1 260
## 10923 https://udn.com/news/story/6809/5225330 距離 1 260
## 10924 https://udn.com/news/story/6809/5225330 進入 1 260
## 10925 https://udn.com/news/story/6809/5225330 傳感器 1 260
## 10926 https://udn.com/news/story/6809/5225330 暗語 1 260
## 10927 https://udn.com/news/story/6809/5225330 概念 1 260
## 10928 https://udn.com/news/story/6809/5225330 盟國 1 260
## 10929 https://udn.com/news/story/6809/5225330 群在 1 260
## 10930 https://udn.com/news/story/6809/5225330 解放軍 1 260
## 10931 https://udn.com/news/story/6809/5225330 較量 1 260
## 10932 https://udn.com/news/story/6809/5225330 載機 1 260
## 10933 https://udn.com/news/story/6809/5225330 過於 1 260
## 10934 https://udn.com/news/story/6809/5225330 實在 1 260
## 10935 https://udn.com/news/story/6809/5225330 對方 1 260
## 10936 https://udn.com/news/story/6809/5225330 截收 1 260
## 10937 https://udn.com/news/story/6809/5225330 旗下 1 260
## 10938 https://udn.com/news/story/6809/5225330 瞄準 1 260
## 10939 https://udn.com/news/story/6809/5225330 說成 1 260
## 10940 https://udn.com/news/story/6809/5225330 遠航 1 260
## 10941 https://udn.com/news/story/6809/5225330 遠程 1 260
## 10942 https://udn.com/news/story/6809/5225330 需要 1 260
## 10943 https://udn.com/news/story/6809/5225330 數據 1 260
## 10944 https://udn.com/news/story/6809/5225330 數據鏈 1 260
## 10945 https://udn.com/news/story/6809/5225330 衛星 1 260
## 10946 https://udn.com/news/story/6809/5225330 課目 1 260
## 10947 https://udn.com/news/story/6809/5225330 駕駛艙 1 260
## 10948 https://udn.com/news/story/6809/5225330 操作 1 260
## 10949 https://udn.com/news/story/6809/5225330 操縱員 1 260
## 10950 https://udn.com/news/story/6809/5225330 機內 1 260
## 10951 https://udn.com/news/story/6809/5225330 機外 1 260
## 10952 https://udn.com/news/story/6809/5225330 機載設備 1 260
## 10953 https://udn.com/news/story/6809/5225330 輸入 1 260
## 10954 https://udn.com/news/story/6809/5225330 靜默 1 260
## 10955 https://udn.com/news/story/6809/5225330 頻道 1 260
## 10956 https://udn.com/news/story/6809/5225330 獲得 1 260
## 10957 https://udn.com/news/story/6809/5225330 環球時報 1 260
## 10958 https://udn.com/news/story/6809/5225330 總統 1 260
## 10959 https://udn.com/news/story/6809/5225330 聯絡 1 260
## 10960 https://udn.com/news/story/6809/5225330 鎖定目標 1 260
## 10961 https://udn.com/news/story/6809/5225330 雙重標準 1 260
## 10962 https://udn.com/news/story/6809/5225330 穩定 1 260
## 10963 https://udn.com/news/story/6809/5225330 羅斯福 1 260
## 10964 https://udn.com/news/story/6809/5225330 識別區 1 260
## 10965 https://udn.com/news/story/6809/5225330 顯示 1 260
## 10966 https://udn.com/news/story/6809/5255445 不受 1 211
## 10967 https://udn.com/news/story/6809/5255445 不應 1 211
## 10968 https://udn.com/news/story/6809/5255445 公約 1 211
## 10969 https://udn.com/news/story/6809/5255445 世紀 1 211
## 10970 https://udn.com/news/story/6809/5255445 主權 1 211
## 10971 https://udn.com/news/story/6809/5255445 以來 1 211
## 10972 https://udn.com/news/story/6809/5255445 任何人 1 211
## 10973 https://udn.com/news/story/6809/5255445 全世界 1 211
## 10974 https://udn.com/news/story/6809/5255445 全球 1 211
## 10975 https://udn.com/news/story/6809/5255445 全部 1 211
## 10976 https://udn.com/news/story/6809/5255445 共同 1 211
## 10977 https://udn.com/news/story/6809/5255445 合理 1 211
## 10978 https://udn.com/news/story/6809/5255445 存在 1 211
## 10979 https://udn.com/news/story/6809/5255445 自由貿易 1 211
## 10980 https://udn.com/news/story/6809/5255445 自由權 1 211
## 10981 https://udn.com/news/story/6809/5255445 至關重要 1 211
## 10982 https://udn.com/news/story/6809/5255445 行動 1 211
## 10983 https://udn.com/news/story/6809/5255445 作戰 1 211
## 10984 https://udn.com/news/story/6809/5255445 每天 1 211
## 10985 https://udn.com/news/story/6809/5255445 汶萊 1 211
## 10986 https://udn.com/news/story/6809/5255445 享有 1 211
## 10987 https://udn.com/news/story/6809/5255445 使用 1 211
## 10988 https://udn.com/news/story/6809/5255445 受限制 1 211
## 10989 https://udn.com/news/story/6809/5255445 所有人 1 211
## 10990 https://udn.com/news/story/6809/5255445 承認 1 211
## 10991 https://udn.com/news/story/6809/5255445 承擔 1 211
## 10992 https://udn.com/news/story/6809/5255445 拉塞爾 1 211
## 10993 https://udn.com/news/story/6809/5255445 放棄 1 211
## 10994 https://udn.com/news/story/6809/5255445 沿岸 1 211
## 10995 https://udn.com/news/story/6809/5255445 社會 1 211
## 10996 https://udn.com/news/story/6809/5255445 阻礙 1 211
## 10997 https://udn.com/news/story/6809/5255445 非法 1 211
## 10998 https://udn.com/news/story/6809/5255445 促進 1 211
## 10999 https://udn.com/news/story/6809/5255445 南沙 1 211
## 11000 https://udn.com/news/story/6809/5255445 持續 1 211
## 11001 https://udn.com/news/story/6809/5255445 挑戰 1 211
## 11002 https://udn.com/news/story/6809/5255445 是否 1 211
## 11003 https://udn.com/news/story/6809/5255445 相近 1 211
## 11004 https://udn.com/news/story/6809/5255445 美東 1 211
## 11005 https://udn.com/news/story/6809/5255445 要求 1 211
## 11006 https://udn.com/news/story/6809/5255445 限制 1 211
## 11007 https://udn.com/news/story/6809/5255445 原則 1 211
## 11008 https://udn.com/news/story/6809/5255445 海上 1 211
## 11009 https://udn.com/news/story/6809/5255445 海洋法 1 211
## 11010 https://udn.com/news/story/6809/5255445 神盾級 1 211
## 11011 https://udn.com/news/story/6809/5255445 秩序 1 211
## 11012 https://udn.com/news/story/6809/5255445 脅迫 1 211
## 11013 https://udn.com/news/story/6809/5255445 馬來西亞 1 211
## 11014 https://udn.com/news/story/6809/5255445 商業活動 1 211
## 11015 https://udn.com/news/story/6809/5255445 執行 1 211
## 11016 https://udn.com/news/story/6809/5255445 堅持 1 211
## 11017 https://udn.com/news/story/6809/5255445 密切合作 1 211
## 11018 https://udn.com/news/story/6809/5255445 將在 1 211
## 11019 https://udn.com/news/story/6809/5255445 強加 1 211
## 11020 https://udn.com/news/story/6809/5255445 情況 1 211
## 11021 https://udn.com/news/story/6809/5255445 授權 1 211
## 11022 https://udn.com/news/story/6809/5255445 晚間 1 211
## 11023 https://udn.com/news/story/6809/5255445 理念 1 211
## 11024 https://udn.com/news/story/6809/5255445 船舶 1 211
## 11025 https://udn.com/news/story/6809/5255445 許可 1 211
## 11026 https://udn.com/news/story/6809/5255445 透過 1 211
## 11027 https://udn.com/news/story/6809/5255445 這對 1 211
## 11028 https://udn.com/news/story/6809/5255445 造成 1 211
## 11029 https://udn.com/news/story/6809/5255445 部分 1 211
## 11030 https://udn.com/news/story/6809/5255445 單方面 1 211
## 11031 https://udn.com/news/story/6809/5255445 提供 1 211
## 11032 https://udn.com/news/story/6809/5255445 發布 1 211
## 11033 https://udn.com/news/story/6809/5255445 菲律賓 1 211
## 11034 https://udn.com/news/story/6809/5255445 超過 1 211
## 11035 https://udn.com/news/story/6809/5255445 進行 1 211
## 11036 https://udn.com/news/story/6809/5255445 開放 1 211
## 11037 https://udn.com/news/story/6809/5255445 新聞稿 1 211
## 11038 https://udn.com/news/story/6809/5255445 當下 1 211
## 11039 https://udn.com/news/story/6809/5255445 盟友 1 211
## 11040 https://udn.com/news/story/6809/5255445 經濟 1 211
## 11041 https://udn.com/news/story/6809/5255445 群島 1 211
## 11042 https://udn.com/news/story/6809/5255445 夥伴 1 211
## 11043 https://udn.com/news/story/6809/5255445 實際行動 1 211
## 11044 https://udn.com/news/story/6809/5255445 對此 1 211
## 11045 https://udn.com/news/story/6809/5255445 維護 1 211
## 11046 https://udn.com/news/story/6809/5255445 廣泛 1 211
## 11047 https://udn.com/news/story/6809/5255445 請求 1 211
## 11048 https://udn.com/news/story/6809/5255445 擁有 1 211
## 11049 https://udn.com/news/story/6809/5255445 機會 1 211
## 11050 https://udn.com/news/story/6809/5255445 獲得 1 211
## 11051 https://udn.com/news/story/6809/5255445 聲稱 1 211
## 11052 https://udn.com/news/story/6809/5255445 藉由 1 211
## 11053 https://udn.com/news/story/6809/5255445 穩定 1 211
## 11054 https://udn.com/news/story/6809/5255445 證明 1 211
## 11055 https://udn.com/news/story/6809/5255445 繼續 1 211
## 11056 https://udn.com/news/story/6809/5255445 驅逐艦 1 211
## 11057 https://udn.com/news/story/6809/5263091 一起 1 376
## 11058 https://udn.com/news/story/6809/5263091 九段 1 376
## 11059 https://udn.com/news/story/6809/5263091 大部分 1 376
## 11060 https://udn.com/news/story/6809/5263091 川普 1 376
## 11061 https://udn.com/news/story/6809/5263091 工事 1 376
## 11062 https://udn.com/news/story/6809/5263091 不要 1 376
## 11063 https://udn.com/news/story/6809/5263091 中華人民共和國 1 376
## 11064 https://udn.com/news/story/6809/5263091 之際 1 376
## 11065 https://udn.com/news/story/6809/5263091 仁愛 1 376
## 11066 https://udn.com/news/story/6809/5263091 允許 1 376
## 11067 https://udn.com/news/story/6809/5263091 公約 1 376
## 11068 https://udn.com/news/story/6809/5263091 公開 1 376
## 11069 https://udn.com/news/story/6809/5263091 升溫 1 376
## 11070 https://udn.com/news/story/6809/5263091 巴馬 1 376
## 11071 https://udn.com/news/story/6809/5263091 世界 1 376
## 11072 https://udn.com/news/story/6809/5263091 主動 1 376
## 11073 https://udn.com/news/story/6809/5263091 他方 1 376
## 11074 https://udn.com/news/story/6809/5263091 出爐 1 376
## 11075 https://udn.com/news/story/6809/5263091 加入 1 376
## 11076 https://udn.com/news/story/6809/5263091 包含 1 376
## 11077 https://udn.com/news/story/6809/5263091 可能 1 376
## 11078 https://udn.com/news/story/6809/5263091 台灣 1 376
## 11079 https://udn.com/news/story/6809/5263091 外交 1 376
## 11080 https://udn.com/news/story/6809/5263091 未能 1 376
## 11081 https://udn.com/news/story/6809/5263091 本月 1 376
## 11082 https://udn.com/news/story/6809/5263091 正在 1 376
## 11083 https://udn.com/news/story/6809/5263091 生效 1 376
## 11084 https://udn.com/news/story/6809/5263091 用以 1 376
## 11085 https://udn.com/news/story/6809/5263091 目前 1 376
## 11086 https://udn.com/news/story/6809/5263091 任內 1 376
## 11087 https://udn.com/news/story/6809/5263091 再次 1 376
## 11088 https://udn.com/news/story/6809/5263091 印尼 1 376
## 11089 https://udn.com/news/story/6809/5263091 各國 1 376
## 11090 https://udn.com/news/story/6809/5263091 在內 1 376
## 11091 https://udn.com/news/story/6809/5263091 此事 1 376
## 11092 https://udn.com/news/story/6809/5263091 自由權 1 376
## 11093 https://udn.com/news/story/6809/5263091 行為 1 376
## 11094 https://udn.com/news/story/6809/5263091 克制 1 376
## 11095 https://udn.com/news/story/6809/5263091 努力 1 376
## 11096 https://udn.com/news/story/6809/5263091 否決 1 376
## 11097 https://udn.com/news/story/6809/5263091 投入 1 376
## 11098 https://udn.com/news/story/6809/5263091 罕見 1 376
## 11099 https://udn.com/news/story/6809/5263091 身上 1 376
## 11100 https://udn.com/news/story/6809/5263091 身亡 1 376
## 11101 https://udn.com/news/story/6809/5263091 事件 1 376
## 11102 https://udn.com/news/story/6809/5263091 奈比 1 376
## 11103 https://udn.com/news/story/6809/5263091 延續 1 376
## 11104 https://udn.com/news/story/6809/5263091 所有 1 376
## 11105 https://udn.com/news/story/6809/5263091 承認 1 376
## 11106 https://udn.com/news/story/6809/5263091 明確 1 376
## 11107 https://udn.com/news/story/6809/5263091 東海 1 376
## 11108 https://udn.com/news/story/6809/5263091 武力 1 376
## 11109 https://udn.com/news/story/6809/5263091 法律依據 1 376
## 11110 https://udn.com/news/story/6809/5263091 爭議地區 1 376
## 11111 https://udn.com/news/story/6809/5263091 直接 1 376
## 11112 https://udn.com/news/story/6809/5263091 社會 1 376
## 11113 https://udn.com/news/story/6809/5263091 表達 1 376
## 11114 https://udn.com/news/story/6809/5263091 表態 1 376
## 11115 https://udn.com/news/story/6809/5263091 近日 1 376
## 11116 https://udn.com/news/story/6809/5263091 非法 1 376
## 11117 https://udn.com/news/story/6809/5263091 前哨站 1 376
## 11118 https://udn.com/news/story/6809/5263091 帝國 1 376
## 11119 https://udn.com/news/story/6809/5263091 建議 1 376
## 11120 https://udn.com/news/story/6809/5263091 拜登 1 376
## 11121 https://udn.com/news/story/6809/5263091 持續 1 376
## 11122 https://udn.com/news/story/6809/5263091 政策 1 376
## 11123 https://udn.com/news/story/6809/5263091 施加 1 376
## 11124 https://udn.com/news/story/6809/5263091 施暴 1 376
## 11125 https://udn.com/news/story/6809/5263091 活動 1 376
## 11126 https://udn.com/news/story/6809/5263091 派出 1 376
## 11127 https://udn.com/news/story/6809/5263091 相關 1 376
## 11128 https://udn.com/news/story/6809/5263091 美方 1 376
## 11129 https://udn.com/news/story/6809/5263091 美國國務院 1 376
## 11130 https://udn.com/news/story/6809/5263091 美濟礁 1 376
## 11131 https://udn.com/news/story/6809/5263091 軍人 1 376
## 11132 https://udn.com/news/story/6809/5263091 軍艦 1 376
## 11133 https://udn.com/news/story/6809/5263091 限制 1 376
## 11134 https://udn.com/news/story/6809/5263091 首都 1 376
## 11135 https://udn.com/news/story/6809/5263091 凍結 1 376
## 11136 https://udn.com/news/story/6809/5263091 展現 1 376
## 11137 https://udn.com/news/story/6809/5263091 島礁 1 376
## 11138 https://udn.com/news/story/6809/5263091 時任 1 376
## 11139 https://udn.com/news/story/6809/5263091 海洋法 1 376
## 11140 https://udn.com/news/story/6809/5263091 海權 1 376
## 11141 https://udn.com/news/story/6809/5263091 特別 1 376
## 11142 https://udn.com/news/story/6809/5263091 航行 1 376
## 11143 https://udn.com/news/story/6809/5263091 航經 1 376
## 11144 https://udn.com/news/story/6809/5263091 針對 1 376
## 11145 https://udn.com/news/story/6809/5263091 馬來西亞 1 376
## 11146 https://udn.com/news/story/6809/5263091 動用 1 376
## 11147 https://udn.com/news/story/6809/5263091 國家 1 376
## 11148 https://udn.com/news/story/6809/5263091 國務卿 1 376
## 11149 https://udn.com/news/story/6809/5263091 國際法 1 376
## 11150 https://udn.com/news/story/6809/5263091 堅持 1 376
## 11151 https://udn.com/news/story/6809/5263091 專業 1 376
## 11152 https://udn.com/news/story/6809/5263091 採取 1 376
## 11153 https://udn.com/news/story/6809/5263091 清楚 1 376
## 11154 https://udn.com/news/story/6809/5263091 符合 1 376
## 11155 https://udn.com/news/story/6809/5263091 規範 1 376
## 11156 https://udn.com/news/story/6809/5263091 設立 1 376
## 11157 https://udn.com/news/story/6809/5263091 透過 1 376
## 11158 https://udn.com/news/story/6809/5263091 這次 1 376
## 11159 https://udn.com/news/story/6809/5263091 這是 1 376
## 11160 https://udn.com/news/story/6809/5263091 部隊 1 376
## 11161 https://udn.com/news/story/6809/5263091 單邊 1 376
## 11162 https://udn.com/news/story/6809/5263091 提及 1 376
## 11163 https://udn.com/news/story/6809/5263091 提到 1 376
## 11164 https://udn.com/news/story/6809/5263091 提醒 1 376
## 11165 https://udn.com/news/story/6809/5263091 援引 1 376
## 11166 https://udn.com/news/story/6809/5263091 曾母暗沙 1 376
## 11167 https://udn.com/news/story/6809/5263091 無害 1 376
## 11168 https://udn.com/news/story/6809/5263091 發生 1 376
## 11169 https://udn.com/news/story/6809/5263091 發言人 1 376
## 11170 https://udn.com/news/story/6809/5263091 視為 1 376
## 11171 https://udn.com/news/story/6809/5263091 進一步 1 376
## 11172 https://udn.com/news/story/6809/5263091 集體行動 1 376
## 11173 https://udn.com/news/story/6809/5263091 意圖 1 376
## 11174 https://udn.com/news/story/6809/5263091 節制 1 376
## 11175 https://udn.com/news/story/6809/5263091 義務 1 376
## 11176 https://udn.com/news/story/6809/5263091 萬安 1 376
## 11177 https://udn.com/news/story/6809/5263091 該法 1 376
## 11178 https://udn.com/news/story/6809/5263091 電話 1 376
## 11179 https://udn.com/news/story/6809/5263091 徹底 1 376
## 11180 https://udn.com/news/story/6809/5263091 槍擊 1 376
## 11181 https://udn.com/news/story/6809/5263091 管轄 1 376
## 11182 https://udn.com/news/story/6809/5263091 精神 1 376
## 11183 https://udn.com/news/story/6809/5263091 認為 1 376
## 11184 https://udn.com/news/story/6809/5263091 暴力 1 376
## 11185 https://udn.com/news/story/6809/5263091 歐說 1 376
## 11186 https://udn.com/news/story/6809/5263091 潛在 1 376
## 11187 https://udn.com/news/story/6809/5263091 確保 1 376
## 11188 https://udn.com/news/story/6809/5263091 範圍 1 376
## 11189 https://udn.com/news/story/6809/5263091 衝突 1 376
## 11190 https://udn.com/news/story/6809/5263091 憲章 1 376
## 11191 https://udn.com/news/story/6809/5263091 擁有 1 376
## 11192 https://udn.com/news/story/6809/5263091 遵守 1 376
## 11193 https://udn.com/news/story/6809/5263091 應對 1 376
## 11194 https://udn.com/news/story/6809/5263091 聲索 1 376
## 11195 https://udn.com/news/story/6809/5263091 聲稱 1 376
## 11196 https://udn.com/news/story/6809/5263091 擴大 1 376
## 11197 https://udn.com/news/story/6809/5263091 藉由 1 376
## 11198 https://udn.com/news/story/6809/5263091 離岸 1 376
## 11199 https://udn.com/news/story/6809/5263091 關注 1 376
## 11200 https://udn.com/news/story/6809/5263091 警方 1 376
## 11201 https://udn.com/news/story/6809/5263091 屬於 1 376
## 11202 https://udn.com/news/story/6809/5263091 譴責 1 376
## 11203 https://udn.com/news/story/6809/5263091 霸凌 1 376
## 11204 https://udn.com/news/story/6809/5263091 權利 1 376
## 11205 https://udn.com/news/story/6809/5352633 一些 1 205
## 11206 https://udn.com/news/story/6809/5352633 一定 1 205
## 11207 https://udn.com/news/story/6809/5352633 大陸 1 205
## 11208 https://udn.com/news/story/6809/5352633 大過 1 205
## 11209 https://udn.com/news/story/6809/5352633 不會 1 205
## 11210 https://udn.com/news/story/6809/5352633 中心 1 205
## 11211 https://udn.com/news/story/6809/5352633 允許 1 205
## 11212 https://udn.com/news/story/6809/5352633 公佈 1 205
## 11213 https://udn.com/news/story/6809/5352633 尤其 1 205
## 11214 https://udn.com/news/story/6809/5352633 尤索夫 1 205
## 11215 https://udn.com/news/story/6809/5352633 巴拉 1 205
## 11216 https://udn.com/news/story/6809/5352633 支持 1 205
## 11217 https://udn.com/news/story/6809/5352633 日印 1 205
## 11218 https://udn.com/news/story/6809/5352633 日將 1 205
## 11219 https://udn.com/news/story/6809/5352633 水域 1 205
## 11220 https://udn.com/news/story/6809/5352633 主編 1 205
## 11221 https://udn.com/news/story/6809/5352633 他還 1 205
## 11222 https://udn.com/news/story/6809/5352633 代表 1 205
## 11223 https://udn.com/news/story/6809/5352633 加強 1 205
## 11224 https://udn.com/news/story/6809/5352633 去年 1 205
## 11225 https://udn.com/news/story/6809/5352633 四方 1 205
## 11226 https://udn.com/news/story/6809/5352633 外長 1 205
## 11227 https://udn.com/news/story/6809/5352633 外國 1 205
## 11228 https://udn.com/news/story/6809/5352633 伊薩 1 205
## 11229 https://udn.com/news/story/6809/5352633 先進 1 205
## 11230 https://udn.com/news/story/6809/5352633 因應 1 205
## 11231 https://udn.com/news/story/6809/5352633 地緣 1 205
## 11232 https://udn.com/news/story/6809/5352633 有望 1 205
## 11233 https://udn.com/news/story/6809/5352633 此舉 1 205
## 11234 https://udn.com/news/story/6809/5352633 至少 1 205
## 11235 https://udn.com/news/story/6809/5352633 希望 1 205
## 11236 https://udn.com/news/story/6809/5352633 技術 1 205
## 11237 https://udn.com/news/story/6809/5352633 決心 1 205
## 11238 https://udn.com/news/story/6809/5352633 系統 1 205
## 11239 https://udn.com/news/story/6809/5352633 防長 1 205
## 11240 https://udn.com/news/story/6809/5352633 防務 1 205
## 11241 https://udn.com/news/story/6809/5352633 防禦能力 1 205
## 11242 https://udn.com/news/story/6809/5352633 來自 1 205
## 11243 https://udn.com/news/story/6809/5352633 來說 1 205
## 11244 https://udn.com/news/story/6809/5352633 兩國 1 205
## 11245 https://udn.com/news/story/6809/5352633 具備 1 205
## 11246 https://udn.com/news/story/6809/5352633 周圍 1 205
## 11247 https://udn.com/news/story/6809/5352633 和澳洲 1 205
## 11248 https://udn.com/news/story/6809/5352633 坦克 1 205
## 11249 https://udn.com/news/story/6809/5352633 尚未 1 205
## 11250 https://udn.com/news/story/6809/5352633 東京 1 205
## 11251 https://udn.com/news/story/6809/5352633 武器 1 205
## 11252 https://udn.com/news/story/6809/5352633 直接 1 205
## 11253 https://udn.com/news/story/6809/5352633 空軍 1 205
## 11254 https://udn.com/news/story/6809/5352633 空間 1 205
## 11255 https://udn.com/news/story/6809/5352633 表示 1 205
## 11256 https://udn.com/news/story/6809/5352633 保護 1 205
## 11257 https://udn.com/news/story/6809/5352633 信心 1 205
## 11258 https://udn.com/news/story/6809/5352633 則說 1 205
## 11259 https://udn.com/news/story/6809/5352633 威脅 1 205
## 11260 https://udn.com/news/story/6809/5352633 建立 1 205
## 11261 https://udn.com/news/story/6809/5352633 建設 1 205
## 11262 https://udn.com/news/story/6809/5352633 指出 1 205
## 11263 https://udn.com/news/story/6809/5352633 政治 1 205
## 11264 https://udn.com/news/story/6809/5352633 研究所 1 205
## 11265 https://udn.com/news/story/6809/5352633 研究員 1 205
## 11266 https://udn.com/news/story/6809/5352633 要求 1 205
## 11267 https://udn.com/news/story/6809/5352633 重要 1 205
## 11268 https://udn.com/news/story/6809/5352633 展現出 1 205
## 11269 https://udn.com/news/story/6809/5352633 料將 1 205
## 11270 https://udn.com/news/story/6809/5352633 桑比 1 205
## 11271 https://udn.com/news/story/6809/5352633 海域 1 205
## 11272 https://udn.com/news/story/6809/5352633 納土納 1 205
## 11273 https://udn.com/news/story/6809/5352633 能力 1 205
## 11274 https://udn.com/news/story/6809/5352633 高級 1 205
## 11275 https://udn.com/news/story/6809/5352633 偵察機 1 205
## 11276 https://udn.com/news/story/6809/5352633 動態 1 205
## 11277 https://udn.com/news/story/6809/5352633 區域 1 205
## 11278 https://udn.com/news/story/6809/5352633 問題 1 205
## 11279 https://udn.com/news/story/6809/5352633 國家 1 205
## 11280 https://udn.com/news/story/6809/5352633 國際 1 205
## 11281 https://udn.com/news/story/6809/5352633 將跟 1 205
## 11282 https://udn.com/news/story/6809/5352633 專家 1 205
## 11283 https://udn.com/news/story/6809/5352633 專屬經濟 1 205
## 11284 https://udn.com/news/story/6809/5352633 帶來 1 205
## 11285 https://udn.com/news/story/6809/5352633 細節 1 205
## 11286 https://udn.com/news/story/6809/5352633 組織 1 205
## 11287 https://udn.com/news/story/6809/5352633 這將 1 205
## 11288 https://udn.com/news/story/6809/5352633 這對 1 205
## 11289 https://udn.com/news/story/6809/5352633 創辦人 1 205
## 11290 https://udn.com/news/story/6809/5352633 提升 1 205
## 11291 https://udn.com/news/story/6809/5352633 無法 1 205
## 11292 https://udn.com/news/story/6809/5352633 等國 1 205
## 11293 https://udn.com/news/story/6809/5352633 結盟 1 205
## 11294 https://udn.com/news/story/6809/5352633 進行 1 205
## 11295 https://udn.com/news/story/6809/5352633 意願 1 205
## 11296 https://udn.com/news/story/6809/5352633 會談 1 205
## 11297 https://udn.com/news/story/6809/5352633 準備 1 205
## 11298 https://udn.com/news/story/6809/5352633 當代 1 205
## 11299 https://udn.com/news/story/6809/5352633 群島 1 205
## 11300 https://udn.com/news/story/6809/5352633 裝備 1 205
## 11301 https://udn.com/news/story/6809/5352633 解釋 1 205
## 11302 https://udn.com/news/story/6809/5352633 預測 1 205
## 11303 https://udn.com/news/story/6809/5352633 對抗 1 205
## 11304 https://udn.com/news/story/6809/5352633 疑問 1 205
## 11305 https://udn.com/news/story/6809/5352633 緊密 1 205
## 11306 https://udn.com/news/story/6809/5352633 需要 1 205
## 11307 https://udn.com/news/story/6809/5352633 領導 1 205
## 11308 https://udn.com/news/story/6809/5352633 影響 1 205
## 11309 https://udn.com/news/story/6809/5352633 數量 1 205
## 11310 https://udn.com/news/story/6809/5352633 潛力 1 205
## 11311 https://udn.com/news/story/6809/5352633 潛艦 1 205
## 11312 https://udn.com/news/story/6809/5352633 戰略 1 205
## 11313 https://udn.com/news/story/6809/5352633 戰艦 1 205
## 11314 https://udn.com/news/story/6809/5352633 撼動 1 205
## 11315 https://udn.com/news/story/6809/5352633 擁有 1 205
## 11316 https://udn.com/news/story/6809/5352633 據悉 1 205
## 11317 https://udn.com/news/story/6809/5352633 澳洲 1 205
## 11318 https://udn.com/news/story/6809/5352633 獨立 1 205
## 11319 https://udn.com/news/story/6809/5352633 興趣 1 205
## 11320 https://udn.com/news/story/6809/5352633 優先 1 205
## 11321 https://udn.com/news/story/6809/5352633 獲得 1 205
## 11322 https://udn.com/news/story/6809/5352633 聯盟 1 205
## 11323 https://udn.com/news/story/6809/5352633 聲索國 1 205
## 11324 https://udn.com/news/story/6809/5352633 轉移 1 205
## 11325 https://udn.com/news/story/6809/5352633 簽署 1 205
## 11326 https://udn.com/news/story/6809/5352633 關係 1 205
## 11327 https://udn.com/news/story/6809/5352633 艦艇 1 205
## 11328 https://udn.com/news/story/6809/5365698 入侵 1 186
## 11329 https://udn.com/news/story/6809/5365698 上週 1 186
## 11330 https://udn.com/news/story/6809/5365698 上蓋 1 186
## 11331 https://udn.com/news/story/6809/5365698 口水戰 1 186
## 11332 https://udn.com/news/story/6809/5365698 大量 1 186
## 11333 https://udn.com/news/story/6809/5365698 小型 1 186
## 11334 https://udn.com/news/story/6809/5365698 不是 1 186
## 11335 https://udn.com/news/story/6809/5365698 之間 1 186
## 11336 https://udn.com/news/story/6809/5365698 化作 1 186
## 11337 https://udn.com/news/story/6809/5365698 升溫 1 186
## 11338 https://udn.com/news/story/6809/5365698 反駁 1 186
## 11339 https://udn.com/news/story/6809/5365698 天氣 1 186
## 11340 https://udn.com/news/story/6809/5365698 引發 1 186
## 11341 https://udn.com/news/story/6809/5365698 令人費解 1 186
## 11342 https://udn.com/news/story/6809/5365698 出現 1 186
## 11343 https://udn.com/news/story/6809/5365698 台灣 1 186
## 11344 https://udn.com/news/story/6809/5365698 四散 1 186
## 11345 https://udn.com/news/story/6809/5365698 外交 1 186
## 11346 https://udn.com/news/story/6809/5365698 外海 1 186
## 11347 https://udn.com/news/story/6809/5365698 打算 1 186
## 11348 https://udn.com/news/story/6809/5365698 目的 1 186
## 11349 https://udn.com/news/story/6809/5365698 先前 1 186
## 11350 https://udn.com/news/story/6809/5365698 全都 1 186
## 11351 https://udn.com/news/story/6809/5365698 多艘 1 186
## 11352 https://udn.com/news/story/6809/5365698 如今 1 186
## 11353 https://udn.com/news/story/6809/5365698 有意 1 186
## 11354 https://udn.com/news/story/6809/5365698 舌戰 1 186
## 11355 https://udn.com/news/story/6809/5365698 作業 1 186
## 11356 https://udn.com/news/story/6809/5365698 汶萊 1 186
## 11357 https://udn.com/news/story/6809/5365698 沒有 1 186
## 11358 https://udn.com/news/story/6809/5365698 言論 1 186
## 11359 https://udn.com/news/story/6809/5365698 那裡 1 186
## 11360 https://udn.com/news/story/6809/5365698 依法 1 186
## 11361 https://udn.com/news/story/6809/5365698 兩國 1 186
## 11362 https://udn.com/news/story/6809/5365698 拒絕 1 186
## 11363 https://udn.com/news/story/6809/5365698 明目張膽 1 186
## 11364 https://udn.com/news/story/6809/5365698 法新社 1 186
## 11365 https://udn.com/news/story/6809/5365698 爭議 1 186
## 11366 https://udn.com/news/story/6809/5365698 直接 1 186
## 11367 https://udn.com/news/story/6809/5365698 非法 1 186
## 11368 https://udn.com/news/story/6809/5365698 侵犯 1 186
## 11369 https://udn.com/news/story/6809/5365698 則稱羅倫沙納 1 186
## 11370 https://udn.com/news/story/6809/5365698 南沙 1 186
## 11371 https://udn.com/news/story/6809/5365698 宣稱 1 186
## 11372 https://udn.com/news/story/6809/5365698 持續 1 186
## 11373 https://udn.com/news/story/6809/5365698 指控 1 186
## 11374 https://udn.com/news/story/6809/5365698 昨天 1 186
## 11375 https://udn.com/news/story/6809/5365698 為例 1 186
## 11376 https://udn.com/news/story/6809/5365698 美濟礁 1 186
## 11377 https://udn.com/news/story/6809/5365698 軍事基地 1 186
## 11378 https://udn.com/news/story/6809/5365698 飛機 1 186
## 11379 https://udn.com/news/story/6809/5365698 倫沙納還 1 186
## 11380 https://udn.com/news/story/6809/5365698 島礁 1 186
## 11381 https://udn.com/news/story/6809/5365698 馬尼拉 1 186
## 11382 https://udn.com/news/story/6809/5365698 馬來西亞 1 186
## 11383 https://udn.com/news/story/6809/5365698 國防部長 1 186
## 11384 https://udn.com/news/story/6809/5365698 堅稱 1 186
## 11385 https://udn.com/news/story/6809/5365698 專業 1 186
## 11386 https://udn.com/news/story/6809/5365698 強占 1 186
## 11387 https://udn.com/news/story/6809/5365698 情緒 1 186
## 11388 https://udn.com/news/story/6809/5365698 掀起 1 186
## 11389 https://udn.com/news/story/6809/5365698 淺灘 1 186
## 11390 https://udn.com/news/story/6809/5365698 現在 1 186
## 11391 https://udn.com/news/story/6809/5365698 理由 1 186
## 11392 https://udn.com/news/story/6809/5365698 理性 1 186
## 11393 https://udn.com/news/story/6809/5365698 設施 1 186
## 11394 https://udn.com/news/story/6809/5365698 這片 1 186
## 11395 https://udn.com/news/story/6809/5365698 部分 1 186
## 11396 https://udn.com/news/story/6809/5365698 報導 1 186
## 11397 https://udn.com/news/story/6809/5365698 幾乎 1 186
## 11398 https://udn.com/news/story/6809/5365698 援引 1 186
## 11399 https://udn.com/news/story/6809/5365698 港口 1 186
## 11400 https://udn.com/news/story/6809/5365698 發表 1 186
## 11401 https://udn.com/news/story/6809/5365698 給我 1 186
## 11402 https://udn.com/news/story/6809/5365698 菲律賓海 1 186
## 11403 https://udn.com/news/story/6809/5365698 菲國 1 186
## 11404 https://udn.com/news/story/6809/5365698 越南 1 186
## 11405 https://udn.com/news/story/6809/5365698 跑道 1 186
## 11406 https://udn.com/news/story/6809/5365698 黃岩 1 186
## 11407 https://udn.com/news/story/6809/5365698 傻瓜 1 186
## 11408 https://udn.com/news/story/6809/5365698 當局 1 186
## 11409 https://udn.com/news/story/6809/5365698 群島 1 186
## 11410 https://udn.com/news/story/6809/5365698 截至 1 186
## 11411 https://udn.com/news/story/6809/5365698 撤出 1 186
## 11412 https://udn.com/news/story/6809/5365698 漁船 1 186
## 11413 https://udn.com/news/story/6809/5365698 聚集 1 186
## 11414 https://udn.com/news/story/6809/5365698 說話 1 186
## 11415 https://udn.com/news/story/6809/5365698 數十艘 1 186
## 11416 https://udn.com/news/story/6809/5365698 遭到 1 186
## 11417 https://udn.com/news/story/6809/5365698 駐菲 1 186
## 11418 https://udn.com/news/story/6809/5365698 整片 1 186
## 11419 https://udn.com/news/story/6809/5365698 激起 1 186
## 11420 https://udn.com/news/story/6809/5365698 聲索 1 186
## 11421 https://udn.com/news/story/6809/5365698 避免 1 186
## 11422 https://udn.com/news/story/6809/5365698 避風 1 186
## 11423 https://udn.com/news/story/6809/5365698 擴大 1 186
## 11424 https://udn.com/news/story/6809/5365698 藉由 1 186
## 11425 https://udn.com/news/story/6809/5365698 離開 1 186
## 11426 https://udn.com/news/story/6809/5365698 證明 1 186
## 11427 https://udn.com/news/story/6809/5365698 顯示 1 186
## 11428 https://udn.com/news/story/6809/5367370 一些 1 239
## 11429 https://udn.com/news/story/6809/5367370 一處 1 239
## 11430 https://udn.com/news/story/6809/5367370 人士 1 239
## 11431 https://udn.com/news/story/6809/5367370 人工島 1 239
## 11432 https://udn.com/news/story/6809/5367370 大批 1 239
## 11433 https://udn.com/news/story/6809/5367370 不會 1 239
## 11434 https://udn.com/news/story/6809/5367370 中心 1 239
## 11435 https://udn.com/news/story/6809/5367370 反對 1 239
## 11436 https://udn.com/news/story/6809/5367370 引起 1 239
## 11437 https://udn.com/news/story/6809/5367370 日益 1 239
## 11438 https://udn.com/news/story/6809/5367370 日益加劇 1 239
## 11439 https://udn.com/news/story/6809/5367370 主席 1 239
## 11440 https://udn.com/news/story/6809/5367370 他國 1 239
## 11441 https://udn.com/news/story/6809/5367370 以北 1 239
## 11442 https://udn.com/news/story/6809/5367370 凸顯 1 239
## 11443 https://udn.com/news/story/6809/5367370 加劇 1 239
## 11444 https://udn.com/news/story/6809/5367370 北京 1 239
## 11445 https://udn.com/news/story/6809/5367370 占據 1 239
## 11446 https://udn.com/news/story/6809/5367370 另有 1 239
## 11447 https://udn.com/news/story/6809/5367370 可能 1 239
## 11448 https://udn.com/news/story/6809/5367370 台海 1 239
## 11449 https://udn.com/news/story/6809/5367370 失敗 1 239
## 11450 https://udn.com/news/story/6809/5367370 先前 1 239
## 11451 https://udn.com/news/story/6809/5367370 同樣 1 239
## 11452 https://udn.com/news/story/6809/5367370 在夠 1 239
## 11453 https://udn.com/news/story/6809/5367370 地區 1 239
## 11454 https://udn.com/news/story/6809/5367370 多出 1 239
## 11455 https://udn.com/news/story/6809/5367370 多達 1 239
## 11456 https://udn.com/news/story/6809/5367370 成為 1 239
## 11457 https://udn.com/news/story/6809/5367370 行徑 1 239
## 11458 https://udn.com/news/story/6809/5367370 作法 1 239
## 11459 https://udn.com/news/story/6809/5367370 努力 1 239
## 11460 https://udn.com/news/story/6809/5367370 形容 1 239
## 11461 https://udn.com/news/story/6809/5367370 杜特蒂 1 239
## 11462 https://udn.com/news/story/6809/5367370 沒有 1 239
## 11463 https://udn.com/news/story/6809/5367370 足夠 1 239
## 11464 https://udn.com/news/story/6809/5367370 身分不明 1 239
## 11465 https://udn.com/news/story/6809/5367370 亞洲 1 239
## 11466 https://udn.com/news/story/6809/5367370 使用 1 239
## 11467 https://udn.com/news/story/6809/5367370 來過 1 239
## 11468 https://udn.com/news/story/6809/5367370 供應 1 239
## 11469 https://udn.com/news/story/6809/5367370 依賴 1 239
## 11470 https://udn.com/news/story/6809/5367370 受到 1 239
## 11471 https://udn.com/news/story/6809/5367370 周邊國家 1 239
## 11472 https://udn.com/news/story/6809/5367370 岩礁 1 239
## 11473 https://udn.com/news/story/6809/5367370 東南亞 1 239
## 11474 https://udn.com/news/story/6809/5367370 法律 1 239
## 11475 https://udn.com/news/story/6809/5367370 波林 1 239
## 11476 https://udn.com/news/story/6809/5367370 表示 1 239
## 11477 https://udn.com/news/story/6809/5367370 侵蝕 1 239
## 11478 https://udn.com/news/story/6809/5367370 信心 1 239
## 11479 https://udn.com/news/story/6809/5367370 冠狀病毒 1 239
## 11480 https://udn.com/news/story/6809/5367370 南沙 1 239
## 11481 https://udn.com/news/story/6809/5367370 客人 1 239
## 11482 https://udn.com/news/story/6809/5367370 宣誓 1 239
## 11483 https://udn.com/news/story/6809/5367370 建造 1 239
## 11484 https://udn.com/news/story/6809/5367370 拜登 1 239
## 11485 https://udn.com/news/story/6809/5367370 政府 1 239
## 11486 https://udn.com/news/story/6809/5367370 某種程度 1 239
## 11487 https://udn.com/news/story/6809/5367370 疫苗 1 239
## 11488 https://udn.com/news/story/6809/5367370 看起來 1 239
## 11489 https://udn.com/news/story/6809/5367370 研究 1 239
## 11490 https://udn.com/news/story/6809/5367370 美中 1 239
## 11491 https://udn.com/news/story/6809/5367370 英里 1 239
## 11492 https://udn.com/news/story/6809/5367370 負責人 1 239
## 11493 https://udn.com/news/story/6809/5367370 倡議 1 239
## 11494 https://udn.com/news/story/6809/5367370 捕魚 1 239
## 11495 https://udn.com/news/story/6809/5367370 時間 1 239
## 11496 https://udn.com/news/story/6809/5367370 海事 1 239
## 11497 https://udn.com/news/story/6809/5367370 疾病 1 239
## 11498 https://udn.com/news/story/6809/5367370 紐約時報 1 239
## 11499 https://udn.com/news/story/6809/5367370 脅迫 1 239
## 11500 https://udn.com/news/story/6809/5367370 般停 1 239
## 11501 https://udn.com/news/story/6809/5367370 討好 1 239
## 11502 https://udn.com/news/story/6809/5367370 做法 1 239
## 11503 https://udn.com/news/story/6809/5367370 國家 1 239
## 11504 https://udn.com/news/story/6809/5367370 國際 1 239
## 11505 https://udn.com/news/story/6809/5367370 國際法 1 239
## 11506 https://udn.com/news/story/6809/5367370 執行 1 239
## 11507 https://udn.com/news/story/6809/5367370 專家 1 239
## 11508 https://udn.com/news/story/6809/5367370 強烈抗議 1 239
## 11509 https://udn.com/news/story/6809/5367370 從未 1 239
## 11510 https://udn.com/news/story/6809/5367370 控制權 1 239
## 11511 https://udn.com/news/story/6809/5367370 清楚 1 239
## 11512 https://udn.com/news/story/6809/5367370 現由 1 239
## 11513 https://udn.com/news/story/6809/5367370 現在 1 239
## 11514 https://udn.com/news/story/6809/5367370 習近平 1 239
## 11515 https://udn.com/news/story/6809/5367370 透明度 1 239
## 11516 https://udn.com/news/story/6809/5367370 這是 1 239
## 11517 https://udn.com/news/story/6809/5367370 這項 1 239
## 11518 https://udn.com/news/story/6809/5367370 幾十艘 1 239
## 11519 https://udn.com/news/story/6809/5367370 幾英里 1 239
## 11520 https://udn.com/news/story/6809/5367370 提到 1 239
## 11521 https://udn.com/news/story/6809/5367370 無視 1 239
## 11522 https://udn.com/news/story/6809/5367370 發現 1 239
## 11523 https://udn.com/news/story/6809/5367370 菲國 1 239
## 11524 https://udn.com/news/story/6809/5367370 進一步 1 239
## 11525 https://udn.com/news/story/6809/5367370 新策略 1 239
## 11526 https://udn.com/news/story/6809/5367370 經濟 1 239
## 11527 https://udn.com/news/story/6809/5367370 群島 1 239
## 11528 https://udn.com/news/story/6809/5367370 試探 1 239
## 11529 https://udn.com/news/story/6809/5367370 過去 1 239
## 11530 https://udn.com/news/story/6809/5367370 圖片 1 239
## 11531 https://udn.com/news/story/6809/5367370 對抗 1 239
## 11532 https://udn.com/news/story/6809/5367370 滯留 1 239
## 11533 https://udn.com/news/story/6809/5367370 漠視 1 239
## 11534 https://udn.com/news/story/6809/5367370 緊張局勢 1 239
## 11535 https://udn.com/news/story/6809/5367370 聚群 1 239
## 11536 https://udn.com/news/story/6809/5367370 認為 1 239
## 11537 https://udn.com/news/story/6809/5367370 領導 1 239
## 11538 https://udn.com/news/story/6809/5367370 增強 1 239
## 11539 https://udn.com/news/story/6809/5367370 鄰國 1 239
## 11540 https://udn.com/news/story/6809/5367370 戰略 1 239
## 11541 https://udn.com/news/story/6809/5367370 整齊 1 239
## 11542 https://udn.com/news/story/6809/5367370 壓力 1 239
## 11543 https://udn.com/news/story/6809/5367370 擠出去 1 239
## 11544 https://udn.com/news/story/6809/5367370 礁外 1 239
## 11545 https://udn.com/news/story/6809/5367370 礁岩 1 239
## 11546 https://udn.com/news/story/6809/5367370 總統 1 239
## 11547 https://udn.com/news/story/6809/5367370 聲索 1 239
## 11548 https://udn.com/news/story/6809/5367370 聲稱 1 239
## 11549 https://udn.com/news/story/6809/5367370 舉動 1 239
## 11550 https://udn.com/news/story/6809/5367370 藉此 1 239
## 11551 https://udn.com/news/story/6809/5367370 轉移 1 239
## 11552 https://udn.com/news/story/6809/5367370 離開 1 239
## 11553 https://udn.com/news/story/6809/5367370 驅逐令 1 239
## 11554 https://udn.com/news/story/6809/5367370 顯示 1 239
## 11555 https://udn.com/news/story/6809/5369418 一貫 1 222
## 11556 https://udn.com/news/story/6809/5369418 一部分 1 222
## 11557 https://udn.com/news/story/6809/5369418 入侵 1 222
## 11558 https://udn.com/news/story/6809/5369418 上週 1 222
## 11559 https://udn.com/news/story/6809/5369418 下午 1 222
## 11560 https://udn.com/news/story/6809/5369418 也將 1 222
## 11561 https://udn.com/news/story/6809/5369418 大局 1 222
## 11562 https://udn.com/news/story/6809/5369418 大使館 1 222
## 11563 https://udn.com/news/story/6809/5369418 不是 1 222
## 11564 https://udn.com/news/story/6809/5369418 之間 1 222
## 11565 https://udn.com/news/story/6809/5369418 今年 1 222
## 11566 https://udn.com/news/story/6809/5369418 分析 1 222
## 11567 https://udn.com/news/story/6809/5369418 反對 1 222
## 11568 https://udn.com/news/story/6809/5369418 反駁 1 222
## 11569 https://udn.com/news/story/6809/5369418 天氣 1 222
## 11570 https://udn.com/news/story/6809/5369418 日本 1 222
## 11571 https://udn.com/news/story/6809/5369418 主張 1 222
## 11572 https://udn.com/news/story/6809/5369418 主導 1 222
## 11573 https://udn.com/news/story/6809/5369418 主權 1 222
## 11574 https://udn.com/news/story/6809/5369418 他並 1 222
## 11575 https://udn.com/news/story/6809/5369418 出現 1 222
## 11576 https://udn.com/news/story/6809/5369418 北大西洋公約組織 1 222
## 11577 https://udn.com/news/story/6809/5369418 北京 1 222
## 11578 https://udn.com/news/story/6809/5369418 可能 1 222
## 11579 https://udn.com/news/story/6809/5369418 四散 1 222
## 11580 https://udn.com/news/story/6809/5369418 外海 1 222
## 11581 https://udn.com/news/story/6809/5369418 打算 1 222
## 11582 https://udn.com/news/story/6809/5369418 未來 1 222
## 11583 https://udn.com/news/story/6809/5369418 本身 1 222
## 11584 https://udn.com/news/story/6809/5369418 正確看待 1 222
## 11585 https://udn.com/news/story/6809/5369418 目的 1 222
## 11586 https://udn.com/news/story/6809/5369418 仲裁 1 222
## 11587 https://udn.com/news/story/6809/5369418 仲裁庭 1 222
## 11588 https://udn.com/news/story/6809/5369418 印度 1 222
## 11589 https://udn.com/news/story/6809/5369418 合作 1 222
## 11590 https://udn.com/news/story/6809/5369418 合理合法 1 222
## 11591 https://udn.com/news/story/6809/5369418 向來 1 222
## 11592 https://udn.com/news/story/6809/5369418 多國 1 222
## 11593 https://udn.com/news/story/6809/5369418 如今 1 222
## 11594 https://udn.com/news/story/6809/5369418 成為 1 222
## 11595 https://udn.com/news/story/6809/5369418 有利於 1 222
## 11596 https://udn.com/news/story/6809/5369418 有意 1 222
## 11597 https://udn.com/news/story/6809/5369418 自衛隊 1 222
## 11598 https://udn.com/news/story/6809/5369418 行動 1 222
## 11599 https://udn.com/news/story/6809/5369418 作業 1 222
## 11600 https://udn.com/news/story/6809/5369418 作業點 1 222
## 11601 https://udn.com/news/story/6809/5369418 抗衡 1 222
## 11602 https://udn.com/news/story/6809/5369418 沒有 1 222
## 11603 https://udn.com/news/story/6809/5369418 防長 1 222
## 11604 https://udn.com/news/story/6809/5369418 亞洲 1 222
## 11605 https://udn.com/news/story/6809/5369418 例行 1 222
## 11606 https://udn.com/news/story/6809/5369418 兩國關係 1 222
## 11607 https://udn.com/news/story/6809/5369418 所作 1 222
## 11608 https://udn.com/news/story/6809/5369418 承認 1 222
## 11609 https://udn.com/news/story/6809/5369418 拉佩魯茲 1 222
## 11610 https://udn.com/news/story/6809/5369418 拒絕 1 222
## 11611 https://udn.com/news/story/6809/5369418 法國 1 222
## 11612 https://udn.com/news/story/6809/5369418 爭議 1 222
## 11613 https://udn.com/news/story/6809/5369418 直白 1 222
## 11614 https://udn.com/news/story/6809/5369418 表示 1 222
## 11615 https://udn.com/news/story/6809/5369418 客觀 1 222
## 11616 https://udn.com/news/story/6809/5369418 宣稱 1 222
## 11617 https://udn.com/news/story/6809/5369418 持續 1 222
## 11618 https://udn.com/news/story/6809/5369418 指控 1 222
## 11619 https://udn.com/news/story/6809/5369418 美國 1 222
## 11620 https://udn.com/news/story/6809/5369418 負面影響 1 222
## 11621 https://udn.com/news/story/6809/5369418 軍事 1 222
## 11622 https://udn.com/news/story/6809/5369418 首度 1 222
## 11623 https://udn.com/news/story/6809/5369418 島礁 1 222
## 11624 https://udn.com/news/story/6809/5369418 時則 1 222
## 11625 https://udn.com/news/story/6809/5369418 記者會 1 222
## 11626 https://udn.com/news/story/6809/5369418 區域 1 222
## 11627 https://udn.com/news/story/6809/5369418 國防部長 1 222
## 11628 https://udn.com/news/story/6809/5369418 國與國 1 222
## 11629 https://udn.com/news/story/6809/5369418 基於 1 222
## 11630 https://udn.com/news/story/6809/5369418 堅決 1 222
## 11631 https://udn.com/news/story/6809/5369418 接受 1 222
## 11632 https://udn.com/news/story/6809/5369418 現在 1 222
## 11633 https://udn.com/news/story/6809/5369418 理由 1 222
## 11634 https://udn.com/news/story/6809/5369418 這片 1 222
## 11635 https://udn.com/news/story/6809/5369418 這件 1 222
## 11636 https://udn.com/news/story/6809/5369418 這項 1 222
## 11637 https://udn.com/news/story/6809/5369418 造成 1 222
## 11638 https://udn.com/news/story/6809/5369418 創設 1 222
## 11639 https://udn.com/news/story/6809/5369418 無效 1 222
## 11640 https://udn.com/news/story/6809/5369418 發言人 1 222
## 11641 https://udn.com/news/story/6809/5369418 發展 1 222
## 11642 https://udn.com/news/story/6809/5369418 給我 1 222
## 11643 https://udn.com/news/story/6809/5369418 菲律賓海 1 222
## 11644 https://udn.com/news/story/6809/5369418 菲國 1 222
## 11645 https://udn.com/news/story/6809/5369418 集結 1 222
## 11646 https://udn.com/news/story/6809/5369418 傻瓜 1 222
## 11647 https://udn.com/news/story/6809/5369418 僅稱 1 222
## 11648 https://udn.com/news/story/6809/5369418 截至 1 222
## 11649 https://udn.com/news/story/6809/5369418 撤出 1 222
## 11650 https://udn.com/news/story/6809/5369418 演習 1 222
## 11651 https://udn.com/news/story/6809/5369418 稱呼 1 222
## 11652 https://udn.com/news/story/6809/5369418 聚集 1 222
## 11653 https://udn.com/news/story/6809/5369418 說法 1 222
## 11654 https://udn.com/news/story/6809/5369418 數十艘 1 222
## 11655 https://udn.com/news/story/6809/5369418 機制 1 222
## 11656 https://udn.com/news/story/6809/5369418 澳洲 1 222
## 11657 https://udn.com/news/story/6809/5369418 聯合 1 222
## 11658 https://udn.com/news/story/6809/5369418 避免 1 222
## 11659 https://udn.com/news/story/6809/5369418 擴大 1 222
## 11660 https://udn.com/news/story/6809/5369418 離開 1 222
## 11661 https://udn.com/news/story/6809/5369418 顯示 1 222
## 11662 https://udn.com/news/story/6809/5370058 一再 1 211
## 11663 https://udn.com/news/story/6809/5370058 十億 1 211
## 11664 https://udn.com/news/story/6809/5370058 大多 1 211
## 11665 https://udn.com/news/story/6809/5370058 大使館 1 211
## 11666 https://udn.com/news/story/6809/5370058 大部分 1 211
## 11667 https://udn.com/news/story/6809/5370058 不會 1 211
## 11668 https://udn.com/news/story/6809/5370058 不顧 1 211
## 11669 https://udn.com/news/story/6809/5370058 中方 1 211
## 11670 https://udn.com/news/story/6809/5370058 今天 1 211
## 11671 https://udn.com/news/story/6809/5370058 公然 1 211
## 11672 https://udn.com/news/story/6809/5370058 友好關係 1 211
## 11673 https://udn.com/news/story/6809/5370058 天天 1 211
## 11674 https://udn.com/news/story/6809/5370058 手段 1 211
## 11675 https://udn.com/news/story/6809/5370058 牛軛 1 211
## 11676 https://udn.com/news/story/6809/5370058 主權 1 211
## 11677 https://udn.com/news/story/6809/5370058 包括 1 211
## 11678 https://udn.com/news/story/6809/5370058 占領 1 211
## 11679 https://udn.com/news/story/6809/5370058 可能 1 211
## 11680 https://udn.com/news/story/6809/5370058 外交部 1 211
## 11681 https://udn.com/news/story/6809/5370058 打輸 1 211
## 11682 https://udn.com/news/story/6809/5370058 民兵 1 211
## 11683 https://udn.com/news/story/6809/5370058 目前 1 211
## 11684 https://udn.com/news/story/6809/5370058 合作 1 211
## 11685 https://udn.com/news/story/6809/5370058 名列 1 211
## 11686 https://udn.com/news/story/6809/5370058 回覆 1 211
## 11687 https://udn.com/news/story/6809/5370058 成為 1 211
## 11688 https://udn.com/news/story/6809/5370058 收到 1 211
## 11689 https://udn.com/news/story/6809/5370058 而菲 1 211
## 11690 https://udn.com/news/story/6809/5370058 行動 1 211
## 11691 https://udn.com/news/story/6809/5370058 兌現 1 211
## 11692 https://udn.com/news/story/6809/5370058 困境 1 211
## 11693 https://udn.com/news/story/6809/5370058 我方 1 211
## 11694 https://udn.com/news/story/6809/5370058 投資 1 211
## 11695 https://udn.com/news/story/6809/5370058 抗議 1 211
## 11696 https://udn.com/news/story/6809/5370058 走火 1 211
## 11697 https://udn.com/news/story/6809/5370058 事件 1 211
## 11698 https://udn.com/news/story/6809/5370058 亞洲 1 211
## 11699 https://udn.com/news/story/6809/5370058 供應 1 211
## 11700 https://udn.com/news/story/6809/5370058 取得 1 211
## 11701 https://udn.com/news/story/6809/5370058 和平 1 211
## 11702 https://udn.com/news/story/6809/5370058 和平解決 1 211
## 11703 https://udn.com/news/story/6809/5370058 帕內 1 211
## 11704 https://udn.com/news/story/6809/5370058 所謂 1 211
## 11705 https://udn.com/news/story/6809/5370058 拒絕 1 211
## 11706 https://udn.com/news/story/6809/5370058 歧見 1 211
## 11707 https://udn.com/news/story/6809/5370058 法律顧問 1 211
## 11708 https://udn.com/news/story/6809/5370058 爭議 1 211
## 11709 https://udn.com/news/story/6809/5370058 阻止 1 211
## 11710 https://udn.com/news/story/6809/5370058 附近 1 211
## 11711 https://udn.com/news/story/6809/5370058 侵犯 1 211
## 11712 https://udn.com/news/story/6809/5370058 冠狀病毒 1 211
## 11713 https://udn.com/news/story/6809/5370058 則是 1 211
## 11714 https://udn.com/news/story/6809/5370058 宣讀 1 211
## 11715 https://udn.com/news/story/6809/5370058 指責 1 211
## 11716 https://udn.com/news/story/6809/5370058 挑戰 1 211
## 11717 https://udn.com/news/story/6809/5370058 相較 1 211
## 11718 https://udn.com/news/story/6809/5370058 科興 1 211
## 11719 https://udn.com/news/story/6809/5370058 美元 1 211
## 11720 https://udn.com/news/story/6809/5370058 美國 1 211
## 11721 https://udn.com/news/story/6809/5370058 若干 1 211
## 11722 https://udn.com/news/story/6809/5370058 要求 1 211
## 11723 https://udn.com/news/story/6809/5370058 重災 1 211
## 11724 https://udn.com/news/story/6809/5370058 重要 1 211
## 11725 https://udn.com/news/story/6809/5370058 面臨 1 211
## 11726 https://udn.com/news/story/6809/5370058 庫存 1 211
## 11727 https://udn.com/news/story/6809/5370058 挺身 1 211
## 11728 https://udn.com/news/story/6809/5370058 海域 1 211
## 11729 https://udn.com/news/story/6809/5370058 疾病 1 211
## 11730 https://udn.com/news/story/6809/5370058 紛爭 1 211
## 11731 https://udn.com/news/story/6809/5370058 國會 1 211
## 11732 https://udn.com/news/story/6809/5370058 堅稱 1 211
## 11733 https://udn.com/news/story/6809/5370058 將領 1 211
## 11734 https://udn.com/news/story/6809/5370058 專屬經濟 1 211
## 11735 https://udn.com/news/story/6809/5370058 強硬 1 211
## 11736 https://udn.com/news/story/6809/5370058 情勢 1 211
## 11737 https://udn.com/news/story/6809/5370058 採購 1 211
## 11738 https://udn.com/news/story/6809/5370058 產生 1 211
## 11739 https://udn.com/news/story/6809/5370058 絆腳石 1 211
## 11740 https://udn.com/news/story/6809/5370058 船上 1 211
## 11741 https://udn.com/news/story/6809/5370058 這起 1 211
## 11742 https://udn.com/news/story/6809/5370058 部長 1 211
## 11743 https://udn.com/news/story/6809/5370058 報導 1 211
## 11744 https://udn.com/news/story/6809/5370058 尋求 1 211
## 11745 https://udn.com/news/story/6809/5370058 復甦 1 211
## 11746 https://udn.com/news/story/6809/5370058 提出 1 211
## 11747 https://udn.com/news/story/6809/5370058 提供 1 211
## 11748 https://udn.com/news/story/6809/5370058 無力 1 211
## 11749 https://udn.com/news/story/6809/5370058 發布 1 211
## 11750 https://udn.com/news/story/6809/5370058 發表 1 211
## 11751 https://udn.com/news/story/6809/5370058 結盟 1 211
## 11752 https://udn.com/news/story/6809/5370058 貸款 1 211
## 11753 https://udn.com/news/story/6809/5370058 傳統 1 211
## 11754 https://udn.com/news/story/6809/5370058 惹怒 1 211
## 11755 https://udn.com/news/story/6809/5370058 溫和 1 211
## 11756 https://udn.com/news/story/6809/5370058 當局 1 211
## 11757 https://udn.com/news/story/6809/5370058 盟邦 1 211
## 11758 https://udn.com/news/story/6809/5370058 經濟 1 211
## 11759 https://udn.com/news/story/6809/5370058 置評 1 211
## 11760 https://udn.com/news/story/6809/5370058 解決 1 211
## 11761 https://udn.com/news/story/6809/5370058 路透社 1 211
## 11762 https://udn.com/news/story/6809/5370058 對立 1 211
## 11763 https://udn.com/news/story/6809/5370058 撤離 1 211
## 11764 https://udn.com/news/story/6809/5370058 漁場 1 211
## 11765 https://udn.com/news/story/6809/5370058 稱為 1 211
## 11766 https://udn.com/news/story/6809/5370058 管道 1 211
## 11767 https://udn.com/news/story/6809/5370058 認為 1 211
## 11768 https://udn.com/news/story/6809/5370058 領導 1 211
## 11769 https://udn.com/news/story/6809/5370058 數天 1 211
## 11770 https://udn.com/news/story/6809/5370058 數以 1 211
## 11771 https://udn.com/news/story/6809/5370058 數百艘 1 211
## 11772 https://udn.com/news/story/6809/5370058 數度 1 211
## 11773 https://udn.com/news/story/6809/5370058 戰爭 1 211
## 11774 https://udn.com/news/story/6809/5370058 據點 1 211
## 11775 https://udn.com/news/story/6809/5370058 遲不願 1 211
## 11776 https://udn.com/news/story/6809/5370058 擦槍 1 211
## 11777 https://udn.com/news/story/6809/5370058 總統 1 211
## 11778 https://udn.com/news/story/6809/5370058 輿論 1 211
## 11779 https://udn.com/news/story/6809/5370058 避風 1 211
## 11780 https://udn.com/news/story/6809/5370058 還說 1 211
## 11781 https://udn.com/news/story/6809/5370058 關切 1 211
## 11782 https://udn.com/news/story/6809/5370058 難以 1 211
## 11783 https://udn.com/news/story/6809/5370058 警告 1 211
## 11784 https://udn.com/news/story/6809/5370058 議題 1 211
## 11785 https://udn.com/news/story/6809/5370058 顯得 1 211
## 11786 https://udn.com/news/story/6809/5376403 一艘 1 312
## 11787 https://udn.com/news/story/6809/5376403 川普 1 312
## 11788 https://udn.com/news/story/6809/5376403 不是 1 312
## 11789 https://udn.com/news/story/6809/5376403 中共 1 312
## 11790 https://udn.com/news/story/6809/5376403 中美關係 1 312
## 11791 https://udn.com/news/story/6809/5376403 之際 1 312
## 11792 https://udn.com/news/story/6809/5376403 分析 1 312
## 11793 https://udn.com/news/story/6809/5376403 升高 1 312
## 11794 https://udn.com/news/story/6809/5376403 反映 1 312
## 11795 https://udn.com/news/story/6809/5376403 太平洋 1 312
## 11796 https://udn.com/news/story/6809/5376403 日本 1 312
## 11797 https://udn.com/news/story/6809/5376403 水域 1 312
## 11798 https://udn.com/news/story/6809/5376403 主要 1 312
## 11799 https://udn.com/news/story/6809/5376403 主題 1 312
## 11800 https://udn.com/news/story/6809/5376403 主權 1 312
## 11801 https://udn.com/news/story/6809/5376403 加上 1 312
## 11802 https://udn.com/news/story/6809/5376403 加強 1 312
## 11803 https://udn.com/news/story/6809/5376403 北京大學 1 312
## 11804 https://udn.com/news/story/6809/5376403 可能 1 312
## 11805 https://udn.com/news/story/6809/5376403 必須 1 312
## 11806 https://udn.com/news/story/6809/5376403 正常 1 312
## 11807 https://udn.com/news/story/6809/5376403 母港 1 312
## 11808 https://udn.com/news/story/6809/5376403 目前 1 312
## 11809 https://udn.com/news/story/6809/5376403 目標 1 312
## 11810 https://udn.com/news/story/6809/5376403 印度洋 1 312
## 11811 https://udn.com/news/story/6809/5376403 同盟 1 312
## 11812 https://udn.com/news/story/6809/5376403 在川普 1 312
## 11813 https://udn.com/news/story/6809/5376403 如今 1 312
## 11814 https://udn.com/news/story/6809/5376403 安全 1 312
## 11815 https://udn.com/news/story/6809/5376403 有所改善 1 312
## 11816 https://udn.com/news/story/6809/5376403 肌肉 1 312
## 11817 https://udn.com/news/story/6809/5376403 自由 1 312
## 11818 https://udn.com/news/story/6809/5376403 行駛 1 312
## 11819 https://udn.com/news/story/6809/5376403 西太平洋地區 1 312
## 11820 https://udn.com/news/story/6809/5376403 西南方 1 312
## 11821 https://udn.com/news/story/6809/5376403 局勢 1 312
## 11822 https://udn.com/news/story/6809/5376403 希望 1 312
## 11823 https://udn.com/news/story/6809/5376403 投入 1 312
## 11824 https://udn.com/news/story/6809/5376403 投射 1 312
## 11825 https://udn.com/news/story/6809/5376403 抗衡 1 312
## 11826 https://udn.com/news/story/6809/5376403 改變 1 312
## 11827 https://udn.com/news/story/6809/5376403 沒有 1 312
## 11828 https://udn.com/news/story/6809/5376403 防區 1 312
## 11829 https://udn.com/news/story/6809/5376403 侃號 1 312
## 11830 https://udn.com/news/story/6809/5376403 例行 1 312
## 11831 https://udn.com/news/story/6809/5376403 具有 1 312
## 11832 https://udn.com/news/story/6809/5376403 卸任 1 312
## 11833 https://udn.com/news/story/6809/5376403 所謂 1 312
## 11834 https://udn.com/news/story/6809/5376403 承諾 1 312
## 11835 https://udn.com/news/story/6809/5376403 明說 1 312
## 11836 https://udn.com/news/story/6809/5376403 明顯 1 312
## 11837 https://udn.com/news/story/6809/5376403 東部 1 312
## 11838 https://udn.com/news/story/6809/5376403 爭議 1 312
## 11839 https://udn.com/news/story/6809/5376403 直接 1 312
## 11840 https://udn.com/news/story/6809/5376403 近日 1 312
## 11841 https://udn.com/news/story/6809/5376403 金島號 1 312
## 11842 https://udn.com/news/story/6809/5376403 附上 1 312
## 11843 https://udn.com/news/story/6809/5376403 信號 1 312
## 11844 https://udn.com/news/story/6809/5376403 南洋 1 312
## 11845 https://udn.com/news/story/6809/5376403 南華早報 1 312
## 11846 https://udn.com/news/story/6809/5376403 政府 1 312
## 11847 https://udn.com/news/story/6809/5376403 昨晚 1 312
## 11848 https://udn.com/news/story/6809/5376403 相對 1 312
## 11849 https://udn.com/news/story/6809/5376403 研究員 1 312
## 11850 https://udn.com/news/story/6809/5376403 研究院 1 312
## 11851 https://udn.com/news/story/6809/5376403 美中 1 312
## 11852 https://udn.com/news/story/6809/5376403 美方 1 312
## 11853 https://udn.com/news/story/6809/5376403 美艦 1 312
## 11854 https://udn.com/news/story/6809/5376403 致力 1 312
## 11855 https://udn.com/news/story/6809/5376403 計劃 1 312
## 11856 https://udn.com/news/story/6809/5376403 負責 1 312
## 11857 https://udn.com/news/story/6809/5376403 軍力 1 312
## 11858 https://udn.com/news/story/6809/5376403 重心 1 312
## 11859 https://udn.com/news/story/6809/5376403 重要 1 312
## 11860 https://udn.com/news/story/6809/5376403 香港 1 312
## 11861 https://udn.com/news/story/6809/5376403 個人 1 312
## 11862 https://udn.com/news/story/6809/5376403 凌晨 1 312
## 11863 https://udn.com/news/story/6809/5376403 原本 1 312
## 11864 https://udn.com/news/story/6809/5376403 宮古 1 312
## 11865 https://udn.com/news/story/6809/5376403 時將 1 312
## 11866 https://udn.com/news/story/6809/5376403 時期 1 312
## 11867 https://udn.com/news/story/6809/5376403 海洋 1 312
## 11868 https://udn.com/news/story/6809/5376403 海軍 1 312
## 11869 https://udn.com/news/story/6809/5376403 海域 1 312
## 11870 https://udn.com/news/story/6809/5376403 航空母艦 1 312
## 11871 https://udn.com/news/story/6809/5376403 航艦 1 312
## 11872 https://udn.com/news/story/6809/5376403 訊息 1 312
## 11873 https://udn.com/news/story/6809/5376403 訊號 1 312
## 11874 https://udn.com/news/story/6809/5376403 訓練 1 312
## 11875 https://udn.com/news/story/6809/5376403 馬六甲海峽 1 312
## 11876 https://udn.com/news/story/6809/5376403 馬來西亞 1 312
## 11877 https://udn.com/news/story/6809/5376403 勒南 1 312
## 11878 https://udn.com/news/story/6809/5376403 參與 1 312
## 11879 https://udn.com/news/story/6809/5376403 國際關係學院 1 312
## 11880 https://udn.com/news/story/6809/5376403 專家 1 312
## 11881 https://udn.com/news/story/6809/5376403 得將 1 312
## 11882 https://udn.com/news/story/6809/5376403 情況 1 312
## 11883 https://udn.com/news/story/6809/5376403 推文 1 312
## 11884 https://udn.com/news/story/6809/5376403 推特 1 312
## 11885 https://udn.com/news/story/6809/5376403 晚間 1 312
## 11886 https://udn.com/news/story/6809/5376403 梅金島 1 312
## 11887 https://udn.com/news/story/6809/5376403 理工大學 1 312
## 11888 https://udn.com/news/story/6809/5376403 第一次 1 312
## 11889 https://udn.com/news/story/6809/5376403 船塢 1 312
## 11890 https://udn.com/news/story/6809/5376403 部分 1 312
## 11891 https://udn.com/news/story/6809/5376403 報派 1 312
## 11892 https://udn.com/news/story/6809/5376403 最強 1 312
## 11893 https://udn.com/news/story/6809/5376403 發出 1 312
## 11894 https://udn.com/news/story/6809/5376403 發表 1 312
## 11895 https://udn.com/news/story/6809/5376403 華府 1 312
## 11896 https://udn.com/news/story/6809/5376403 評論員 1 312
## 11897 https://udn.com/news/story/6809/5376403 進一步 1 312
## 11898 https://udn.com/news/story/6809/5376403 開放 1 312
## 11899 https://udn.com/news/story/6809/5376403 隊內 1 312
## 11900 https://udn.com/news/story/6809/5376403 傳遞 1 312
## 11901 https://udn.com/news/story/6809/5376403 意味 1 312
## 11902 https://udn.com/news/story/6809/5376403 意義 1 312
## 11903 https://udn.com/news/story/6809/5376403 感知 1 312
## 11904 https://udn.com/news/story/6809/5376403 新加坡 1 312
## 11905 https://udn.com/news/story/6809/5376403 會經 1 312
## 11906 https://udn.com/news/story/6809/5376403 盟友 1 312
## 11907 https://udn.com/news/story/6809/5376403 義務 1 312
## 11908 https://udn.com/news/story/6809/5376403 號在 1 312
## 11909 https://udn.com/news/story/6809/5376403 號則經 1 312
## 11910 https://udn.com/news/story/6809/5376403 號艦 1 312
## 11911 https://udn.com/news/story/6809/5376403 解放軍 1 312
## 11912 https://udn.com/news/story/6809/5376403 運輸艦 1 312
## 11913 https://udn.com/news/story/6809/5376403 實際 1 312
## 11914 https://udn.com/news/story/6809/5376403 對菲美 1 312
## 11915 https://udn.com/news/story/6809/5376403 態勢 1 312
## 11916 https://udn.com/news/story/6809/5376403 維持 1 312
## 11917 https://udn.com/news/story/6809/5376403 緊繃 1 312
## 11918 https://udn.com/news/story/6809/5376403 認為 1 312
## 11919 https://udn.com/news/story/6809/5376403 增加 1 312
## 11920 https://udn.com/news/story/6809/5376403 寫道 1 312
## 11921 https://udn.com/news/story/6809/5376403 彈性 1 312
## 11922 https://udn.com/news/story/6809/5376403 影像 1 312
## 11923 https://udn.com/news/story/6809/5376403 標籤 1 312
## 11924 https://udn.com/news/story/6809/5376403 模糊 1 312
## 11925 https://udn.com/news/story/6809/5376403 衛星 1 312
## 11926 https://udn.com/news/story/6809/5376403 調動 1 312
## 11927 https://udn.com/news/story/6809/5376403 鄰近 1 312
## 11928 https://udn.com/news/story/6809/5376403 戰鬥力 1 312
## 11929 https://udn.com/news/story/6809/5376403 戰區 1 312
## 11930 https://udn.com/news/story/6809/5376403 戰略 1 312
## 11931 https://udn.com/news/story/6809/5376403 濃厚 1 312
## 11932 https://udn.com/news/story/6809/5376403 遼寧 1 312
## 11933 https://udn.com/news/story/6809/5376403 錯誤 1 312
## 11934 https://udn.com/news/story/6809/5376403 隨後 1 312
## 11935 https://udn.com/news/story/6809/5376403 轉向 1 312
## 11936 https://udn.com/news/story/6809/5376403 轉到第 1 312
## 11937 https://udn.com/news/story/6809/5376403 轉調 1 312
## 11938 https://udn.com/news/story/6809/5376403 關係 1 312
## 11939 https://udn.com/news/story/6809/5376403 艦上 1 312
## 11940 https://udn.com/news/story/6809/5376403 艦到 1 312
## 11941 https://udn.com/news/story/6809/5376403 艦梅 1 312
## 11942 https://udn.com/news/story/6809/5376403 釋出 1 312
## 11943 https://udn.com/news/story/6809/5376403 驅逐艦 1 312
## 11944 https://udn.com/news/story/6809/5376403 變得 1 312
## 11945 https://udn.com/news/story/6809/5381036 一再 1 206
## 11946 https://udn.com/news/story/6809/5381036 一名 1 206
## 11947 https://udn.com/news/story/6809/5381036 一帶 1 206
## 11948 https://udn.com/news/story/6809/5381036 大批 1 206
## 11949 https://udn.com/news/story/6809/5381036 已有 1 206
## 11950 https://udn.com/news/story/6809/5381036 今年 1 206
## 11951 https://udn.com/news/story/6809/5381036 分別 1 206
## 11952 https://udn.com/news/story/6809/5381036 天然 1 206
## 11953 https://udn.com/news/story/6809/5381036 牛軛 1 206
## 11954 https://udn.com/news/story/6809/5381036 北京 1 206
## 11955 https://udn.com/news/story/6809/5381036 只會 1 206
## 11956 https://udn.com/news/story/6809/5381036 外交官 1 206
## 11957 https://udn.com/news/story/6809/5381036 民兵 1 206
## 11958 https://udn.com/news/story/6809/5381036 申請 1 206
## 11959 https://udn.com/news/story/6809/5381036 任務 1 206
## 11960 https://udn.com/news/story/6809/5381036 回應 1 206
## 11961 https://udn.com/news/story/6809/5381036 多達 1 206
## 11962 https://udn.com/news/story/6809/5381036 好戰 1 206
## 11963 https://udn.com/news/story/6809/5381036 安全 1 206
## 11964 https://udn.com/news/story/6809/5381036 年度 1 206
## 11965 https://udn.com/news/story/6809/5381036 此事 1 206
## 11966 https://udn.com/news/story/6809/5381036 但菲方 1 206
## 11967 https://udn.com/news/story/6809/5381036 但會 1 206
## 11968 https://udn.com/news/story/6809/5381036 抗議 1 206
## 11969 https://udn.com/news/story/6809/5381036 攻擊 1 206
## 11970 https://udn.com/news/story/6809/5381036 更好 1 206
## 11971 https://udn.com/news/story/6809/5381036 杜特蒂 1 206
## 11972 https://udn.com/news/story/6809/5381036 杜特蒂因 1 206
## 11973 https://udn.com/news/story/6809/5381036 災害 1 206
## 11974 https://udn.com/news/story/6809/5381036 並向羅倫沙納 1 206
## 11975 https://udn.com/news/story/6809/5381036 並無 1 206
## 11976 https://udn.com/news/story/6809/5381036 協議 1 206
## 11977 https://udn.com/news/story/6809/5381036 官員 1 206
## 11978 https://udn.com/news/story/6809/5381036 延後 1 206
## 11979 https://udn.com/news/story/6809/5381036 往年 1 206
## 11980 https://udn.com/news/story/6809/5381036 承諾 1 206
## 11981 https://udn.com/news/story/6809/5381036 明天 1 206
## 11982 https://udn.com/news/story/6809/5381036 法律 1 206
## 11983 https://udn.com/news/story/6809/5381036 空間 1 206
## 11984 https://udn.com/news/story/6809/5381036 冠狀病毒 1 206
## 11985 https://udn.com/news/story/6809/5381036 則稱 1 206
## 11986 https://udn.com/news/story/6809/5381036 威脅 1 206
## 11987 https://udn.com/news/story/6809/5381036 宣布 1 206
## 11988 https://udn.com/news/story/6809/5381036 度將 1 206
## 11989 https://udn.com/news/story/6809/5381036 活動 1 206
## 11990 https://udn.com/news/story/6809/5381036 為期 1 206
## 11991 https://udn.com/news/story/6809/5381036 疫情 1 206
## 11992 https://udn.com/news/story/6809/5381036 美菲軍 1 206
## 11993 https://udn.com/news/story/6809/5381036 要求 1 206
## 11994 https://udn.com/news/story/6809/5381036 軍事 1 206
## 11995 https://udn.com/news/story/6809/5381036 重申 1 206
## 11996 https://udn.com/news/story/6809/5381036 重要性 1 206
## 11997 https://udn.com/news/story/6809/5381036 倫沙納則 1 206
## 11998 https://udn.com/news/story/6809/5381036 展開 1 206
## 11999 https://udn.com/news/story/6809/5381036 時間 1 206
## 12000 https://udn.com/news/story/6809/5381036 框架 1 206
## 12001 https://udn.com/news/story/6809/5381036 海域 1 206
## 12002 https://udn.com/news/story/6809/5381036 疾病 1 206
## 12003 https://udn.com/news/story/6809/5381036 起將 1 206
## 12004 https://udn.com/news/story/6809/5381036 退場 1 206
## 12005 https://udn.com/news/story/6809/5381036 區域 1 206
## 12006 https://udn.com/news/story/6809/5381036 參加 1 206
## 12007 https://udn.com/news/story/6809/5381036 參與 1 206
## 12008 https://udn.com/news/story/6809/5381036 參謀總長 1 206
## 12009 https://udn.com/news/story/6809/5381036 執行 1 206
## 12010 https://udn.com/news/story/6809/5381036 將與 1 206
## 12011 https://udn.com/news/story/6809/5381036 專屬經濟 1 206
## 12012 https://udn.com/news/story/6809/5381036 情勢 1 206
## 12013 https://udn.com/news/story/6809/5381036 接觸 1 206
## 12014 https://udn.com/news/story/6809/5381036 條件 1 206
## 12015 https://udn.com/news/story/6809/5381036 船上 1 206
## 12016 https://udn.com/news/story/6809/5381036 船隻 1 206
## 12017 https://udn.com/news/story/6809/5381036 規模 1 206
## 12018 https://udn.com/news/story/6809/5381036 這份 1 206
## 12019 https://udn.com/news/story/6809/5381036 這替 1 206
## 12020 https://udn.com/news/story/6809/5381036 這項 1 206
## 12021 https://udn.com/news/story/6809/5381036 這類 1 206
## 12022 https://udn.com/news/story/6809/5381036 通話 1 206
## 12023 https://udn.com/news/story/6809/5381036 創造 1 206
## 12024 https://udn.com/news/story/6809/5381036 單方面 1 206
## 12025 https://udn.com/news/story/6809/5381036 報導 1 206
## 12026 https://udn.com/news/story/6809/5381036 提供 1 206
## 12027 https://udn.com/news/story/6809/5381036 最低 1 206
## 12028 https://udn.com/news/story/6809/5381036 測試 1 206
## 12029 https://udn.com/news/story/6809/5381036 發布 1 206
## 12030 https://udn.com/news/story/6809/5381036 發展 1 206
## 12031 https://udn.com/news/story/6809/5381036 稍早 1 206
## 12032 https://udn.com/news/story/6809/5381036 菲國 1 206
## 12033 https://udn.com/news/story/6809/5381036 集結 1 206
## 12034 https://udn.com/news/story/6809/5381036 極端分子 1 206
## 12035 https://udn.com/news/story/6809/5381036 準備 1 206
## 12036 https://udn.com/news/story/6809/5381036 當地 1 206
## 12037 https://udn.com/news/story/6809/5381036 盟友 1 206
## 12038 https://udn.com/news/story/6809/5381036 路透社 1 206
## 12039 https://udn.com/news/story/6809/5381036 較往年 1 206
## 12040 https://udn.com/news/story/6809/5381036 達成 1 206
## 12041 https://udn.com/news/story/6809/5381036 實際 1 206
## 12042 https://udn.com/news/story/6809/5381036 撤船 1 206
## 12043 https://udn.com/news/story/6809/5381036 漁船 1 206
## 12044 https://udn.com/news/story/6809/5381036 演訓 1 206
## 12045 https://udn.com/news/story/6809/5381036 歐新社 1 206
## 12046 https://udn.com/news/story/6809/5381036 談到 1 206
## 12047 https://udn.com/news/story/6809/5381036 輪流 1 206
## 12048 https://udn.com/news/story/6809/5381036 遭拒 1 206
## 12049 https://udn.com/news/story/6809/5381036 歷史 1 206
## 12050 https://udn.com/news/story/6809/5381036 縮小 1 206
## 12051 https://udn.com/news/story/6809/5381036 總統 1 206
## 12052 https://udn.com/news/story/6809/5381036 避風 1 206
## 12053 https://udn.com/news/story/6809/5381036 簽證 1 206
## 12054 https://udn.com/news/story/6809/5400212 一次 1 168
## 12055 https://udn.com/news/story/6809/5400212 一處 1 168
## 12056 https://udn.com/news/story/6809/5400212 一部分 1 168
## 12057 https://udn.com/news/story/6809/5400212 人士 1 168
## 12058 https://udn.com/news/story/6809/5400212 不是 1 168
## 12059 https://udn.com/news/story/6809/5400212 天然資源 1 168
## 12060 https://udn.com/news/story/6809/5400212 主張 1 168
## 12061 https://udn.com/news/story/6809/5400212 他會 1 168
## 12062 https://udn.com/news/story/6809/5400212 以來 1 168
## 12063 https://udn.com/news/story/6809/5400212 出現 1 168
## 12064 https://udn.com/news/story/6809/5400212 另當別論 1 168
## 12065 https://udn.com/news/story/6809/5400212 外交 1 168
## 12066 https://udn.com/news/story/6809/5400212 目前 1 168
## 12067 https://udn.com/news/story/6809/5400212 向菲 1 168
## 12068 https://udn.com/news/story/6809/5400212 有大到 1 168
## 12069 https://udn.com/news/story/6809/5400212 有所 1 168
## 12070 https://udn.com/news/story/6809/5400212 灰船 1 168
## 12071 https://udn.com/news/story/6809/5400212 行動 1 168
## 12072 https://udn.com/news/story/6809/5400212 你追我趕 1 168
## 12073 https://udn.com/news/story/6809/5400212 告訴 1 168
## 12074 https://udn.com/news/story/6809/5400212 批評 1 168
## 12075 https://udn.com/news/story/6809/5400212 抗議 1 168
## 12076 https://udn.com/news/story/6809/5400212 杜特蒂不去 1 168
## 12077 https://udn.com/news/story/6809/5400212 沒有 1 168
## 12078 https://udn.com/news/story/6809/5400212 迄今 1 168
## 12079 https://udn.com/news/story/6809/5400212 協議 1 168
## 12080 https://udn.com/news/story/6809/5400212 承認 1 168
## 12081 https://udn.com/news/story/6809/5400212 拒絕 1 168
## 12082 https://udn.com/news/story/6809/5400212 油礦 1 168
## 12083 https://udn.com/news/story/6809/5400212 爭吵 1 168
## 12084 https://udn.com/news/story/6809/5400212 爭議 1 168
## 12085 https://udn.com/news/story/6809/5400212 表示 1 168
## 12086 https://udn.com/news/story/6809/5400212 表態 1 168
## 12087 https://udn.com/news/story/6809/5400212 非法 1 168
## 12088 https://udn.com/news/story/6809/5400212 保持 1 168
## 12089 https://udn.com/news/story/6809/5400212 保證 1 168
## 12090 https://udn.com/news/story/6809/5400212 指控 1 168
## 12091 https://udn.com/news/story/6809/5400212 挑戰 1 168
## 12092 https://udn.com/news/story/6809/5400212 昨夜 1 168
## 12093 https://udn.com/news/story/6809/5400212 昨晚 1 168
## 12094 https://udn.com/news/story/6809/5400212 派遣 1 168
## 12095 https://udn.com/news/story/6809/5400212 重申 1 168
## 12096 https://udn.com/news/story/6809/5400212 首度 1 168
## 12097 https://udn.com/news/story/6809/5400212 值得 1 168
## 12098 https://udn.com/news/story/6809/5400212 島礁 1 168
## 12099 https://udn.com/news/story/6809/5400212 效力 1 168
## 12100 https://udn.com/news/story/6809/5400212 核心 1 168
## 12101 https://udn.com/news/story/6809/5400212 海巡 1 168
## 12102 https://udn.com/news/story/6809/5400212 真正 1 168
## 12103 https://udn.com/news/story/6809/5400212 動作 1 168
## 12104 https://udn.com/news/story/6809/5400212 動到 1 168
## 12105 https://udn.com/news/story/6809/5400212 國民 1 168
## 12106 https://udn.com/news/story/6809/5400212 堅守 1 168
## 12107 https://udn.com/news/story/6809/5400212 將會 1 168
## 12108 https://udn.com/news/story/6809/5400212 專屬經濟區 1 168
## 12109 https://udn.com/news/story/6809/5400212 情形 1 168
## 12110 https://udn.com/news/story/6809/5400212 軟弱 1 168
## 12111 https://udn.com/news/story/6809/5400212 這是 1 168
## 12112 https://udn.com/news/story/6809/5400212 部分 1 168
## 12113 https://udn.com/news/story/6809/5400212 報導 1 168
## 12114 https://udn.com/news/story/6809/5400212 提出 1 168
## 12115 https://udn.com/news/story/6809/5400212 最新 1 168
## 12116 https://udn.com/news/story/6809/5400212 無法 1 168
## 12117 https://udn.com/news/story/6809/5400212 發表 1 168
## 12118 https://udn.com/news/story/6809/5400212 菲國 1 168
## 12119 https://udn.com/news/story/6809/5400212 超過 1 168
## 12120 https://udn.com/news/story/6809/5400212 跑得快 1 168
## 12121 https://udn.com/news/story/6809/5400212 意指 1 168
## 12122 https://udn.com/news/story/6809/5400212 當地 1 168
## 12123 https://udn.com/news/story/6809/5400212 當時 1 168
## 12124 https://udn.com/news/story/6809/5400212 盟友 1 168
## 12125 https://udn.com/news/story/6809/5400212 腦筋 1 168
## 12126 https://udn.com/news/story/6809/5400212 落實 1 168
## 12127 https://udn.com/news/story/6809/5400212 路透社 1 168
## 12128 https://udn.com/news/story/6809/5400212 遊戲 1 168
## 12129 https://udn.com/news/story/6809/5400212 電視 1 168
## 12130 https://udn.com/news/story/6809/5400212 對此 1 168
## 12131 https://udn.com/news/story/6809/5400212 對抗 1 168
## 12132 https://udn.com/news/story/6809/5400212 態度 1 168
## 12133 https://udn.com/news/story/6809/5400212 漁獲量 1 168
## 12134 https://udn.com/news/story/6809/5400212 管轄權 1 168
## 12135 https://udn.com/news/story/6809/5400212 聚集 1 168
## 12136 https://udn.com/news/story/6809/5400212 領海 1 168
## 12137 https://udn.com/news/story/6809/5400212 數百條 1 168
## 12138 https://udn.com/news/story/6809/5400212 數度 1 168
## 12139 https://udn.com/news/story/6809/5400212 談話 1 168
## 12140 https://udn.com/news/story/6809/5400212 興趣 1 168
## 12141 https://udn.com/news/story/6809/5400212 遵守 1 168
## 12142 https://udn.com/news/story/6809/5400212 總統 1 168
## 12143 https://udn.com/news/story/6809/5400212 聲索 1 168
## 12144 https://udn.com/news/story/6809/5400212 關係 1 168
## 12145 https://udn.com/news/story/6809/5400212 礦藏 1 168
## 12146 https://udn.com/news/story/6809/5400212 顯得 1 168
## 12147 https://udn.com/news/story/6809/5400212 鑽油時 1 168
## 12148 https://udn.com/news/story/6811/4675655 一次 1 142
## 12149 https://udn.com/news/story/6811/4675655 千萬 1 142
## 12150 https://udn.com/news/story/6811/4675655 不利 1 142
## 12151 https://udn.com/news/story/6811/4675655 升級 1 142
## 12152 https://udn.com/news/story/6811/4675655 日至 1 142
## 12153 https://udn.com/news/story/6811/4675655 水域 1 142
## 12154 https://udn.com/news/story/6811/4675655 包括 1 142
## 12155 https://udn.com/news/story/6811/4675655 可能 1 142
## 12156 https://udn.com/news/story/6811/4675655 未解 1 142
## 12157 https://udn.com/news/story/6811/4675655 全球 1 142
## 12158 https://udn.com/news/story/6811/4675655 印太願景 1 142
## 12159 https://udn.com/news/story/6811/4675655 自由 1 142
## 12160 https://udn.com/news/story/6811/4675655 自制 1 142
## 12161 https://udn.com/news/story/6811/4675655 行為 1 142
## 12162 https://udn.com/news/story/6811/4675655 局勢 1 142
## 12163 https://udn.com/news/story/6811/4675655 形成 1 142
## 12164 https://udn.com/news/story/6811/4675655 更加 1 142
## 12165 https://udn.com/news/story/6811/4675655 使該 1 142
## 12166 https://udn.com/news/story/6811/4675655 周圍 1 142
## 12167 https://udn.com/news/story/6811/4675655 周邊 1 142
## 12168 https://udn.com/news/story/6811/4675655 呼籲 1 142
## 12169 https://udn.com/news/story/6811/4675655 和平 1 142
## 12170 https://udn.com/news/story/6811/4675655 承諾 1 142
## 12171 https://udn.com/news/story/6811/4675655 保持穩定 1 142
## 12172 https://udn.com/news/story/6811/4675655 宣言 1 142
## 12173 https://udn.com/news/story/6811/4675655 持續 1 142
## 12174 https://udn.com/news/story/6811/4675655 指出 1 142
## 12175 https://udn.com/news/story/6811/4675655 指定 1 142
## 12176 https://udn.com/news/story/6811/4675655 疫情 1 142
## 12177 https://udn.com/news/story/6811/4675655 相悖 1 142
## 12178 https://udn.com/news/story/6811/4675655 美國國防部 1 142
## 12179 https://udn.com/news/story/6811/4675655 破壞 1 142
## 12180 https://udn.com/news/story/6811/4675655 脅迫 1 142
## 12181 https://udn.com/news/story/6811/4675655 做法 1 142
## 12182 https://udn.com/news/story/6811/4675655 最新 1 142
## 12183 https://udn.com/news/story/6811/4675655 期間 1 142
## 12184 https://udn.com/news/story/6811/4675655 減少 1 142
## 12185 https://udn.com/news/story/6811/4675655 發布 1 142
## 12186 https://udn.com/news/story/6811/4675655 開放 1 142
## 12187 https://udn.com/news/story/6811/4675655 新聞稿 1 142
## 12188 https://udn.com/news/story/6811/4675655 節制 1 142
## 12189 https://udn.com/news/story/6811/4675655 解放軍 1 142
## 12190 https://udn.com/news/story/6811/4675655 違背 1 142
## 12191 https://udn.com/news/story/6811/4675655 圖表 1 142
## 12192 https://udn.com/news/story/6811/4675655 演習 1 142
## 12193 https://udn.com/news/story/6811/4675655 監控 1 142
## 12194 https://udn.com/news/story/6811/4675655 緊張 1 142
## 12195 https://udn.com/news/story/6811/4675655 增加 1 142
## 12196 https://udn.com/news/story/6811/4675655 數飆 1 142
## 12197 https://udn.com/news/story/6811/4675655 確診 1 142
## 12198 https://udn.com/news/story/6811/4675655 緩解 1 142
## 12199 https://udn.com/news/story/6811/4675655 複雜化 1 142
## 12200 https://udn.com/news/story/6811/4675655 舉行 1 142
## 12201 https://udn.com/news/story/6811/4675655 避免 1 142
## 12202 https://udn.com/news/story/6811/4675655 鮮明對比 1 142
## 12203 https://udn.com/news/story/6811/4675655 關注 1 142
## 12204 https://udn.com/news/story/6811/4812524 上海 1 266
## 12205 https://udn.com/news/story/6811/4812524 大規模 1 266
## 12206 https://udn.com/news/story/6811/4812524 子公司 1 266
## 12207 https://udn.com/news/story/6811/4812524 工程局 1 266
## 12208 https://udn.com/news/story/6811/4812524 工業 1 266
## 12209 https://udn.com/news/story/6811/4812524 已達 1 266
## 12210 https://udn.com/news/story/6811/4812524 不會 1 266
## 12211 https://udn.com/news/story/6811/4812524 不顧 1 266
## 12212 https://udn.com/news/story/6811/4812524 中東 1 266
## 12213 https://udn.com/news/story/6811/4812524 中國政府 1 266
## 12214 https://udn.com/news/story/6811/4812524 中國籍 1 266
## 12215 https://udn.com/news/story/6811/4812524 允許 1 266
## 12216 https://udn.com/news/story/6811/4812524 公頃 1 266
## 12217 https://udn.com/news/story/6811/4812524 反艦 1 266
## 12218 https://udn.com/news/story/6811/4812524 天津 1 266
## 12219 https://udn.com/news/story/6811/4812524 引起 1 266
## 12220 https://udn.com/news/story/6811/4812524 支持 1 266
## 12221 https://udn.com/news/story/6811/4812524 方式 1 266
## 12222 https://udn.com/news/story/6811/4812524 世界 1 266
## 12223 https://udn.com/news/story/6811/4812524 他國 1 266
## 12224 https://udn.com/news/story/6811/4812524 以來 1 266
## 12225 https://udn.com/news/story/6811/4812524 出口 1 266
## 12226 https://udn.com/news/story/6811/4812524 出訪 1 266
## 12227 https://udn.com/news/story/6811/4812524 包含 1 266
## 12228 https://udn.com/news/story/6811/4812524 包括 1 266
## 12229 https://udn.com/news/story/6811/4812524 可能 1 266
## 12230 https://udn.com/news/story/6811/4812524 必須 1 266
## 12231 https://udn.com/news/story/6811/4812524 目前 1 266
## 12232 https://udn.com/news/story/6811/4812524 立場 1 266
## 12233 https://udn.com/news/story/6811/4812524 仲裁 1 266
## 12234 https://udn.com/news/story/6811/4812524 全球 1 266
## 12235 https://udn.com/news/story/6811/4812524 同樣 1 266
## 12236 https://udn.com/news/story/6811/4812524 安全局 1 266
## 12237 https://udn.com/news/story/6811/4812524 有別於 1 266
## 12238 https://udn.com/news/story/6811/4812524 行為 1 266
## 12239 https://udn.com/news/story/6811/4812524 完全 1 266
## 12240 https://udn.com/news/story/6811/4812524 快速 1 266
## 12241 https://udn.com/news/story/6811/4812524 扮演 1 266
## 12242 https://udn.com/news/story/6811/4812524 角色 1 266
## 12243 https://udn.com/news/story/6811/4812524 防空 1 266
## 12244 https://udn.com/news/story/6811/4812524 並盼 1 266
## 12245 https://udn.com/news/story/6811/4812524 依據 1 266
## 12246 https://udn.com/news/story/6811/4812524 其究責 1 266
## 12247 https://udn.com/news/story/6811/4812524 制裁 1 266
## 12248 https://udn.com/news/story/6811/4812524 受到 1 266
## 12249 https://udn.com/news/story/6811/4812524 和平 1 266
## 12250 https://udn.com/news/story/6811/4812524 所有 1 266
## 12251 https://udn.com/news/story/6811/4812524 東南亞 1 266
## 12252 https://udn.com/news/story/6811/4812524 法院 1 266
## 12253 https://udn.com/news/story/6811/4812524 社會 1 266
## 12254 https://udn.com/news/story/6811/4812524 非法 1 266
## 12255 https://udn.com/news/story/6811/4812524 侵犯 1 266
## 12256 https://udn.com/news/story/6811/4812524 削弱 1 266
## 12257 https://udn.com/news/story/6811/4812524 帝國 1 266
## 12258 https://udn.com/news/story/6811/4812524 挑釁 1 266
## 12259 https://udn.com/news/story/6811/4812524 染疫 1 266
## 12260 https://udn.com/news/story/6811/4812524 相關 1 266
## 12261 https://udn.com/news/story/6811/4812524 美國政府 1 266
## 12262 https://udn.com/news/story/6811/4812524 美國國務院 1 266
## 12263 https://udn.com/news/story/6811/4812524 英畝 1 266
## 12264 https://udn.com/news/story/6811/4812524 負責 1 266
## 12265 https://udn.com/news/story/6811/4812524 軍隊 1 266
## 12266 https://udn.com/news/story/6811/4812524 重要 1 266
## 12267 https://udn.com/news/story/6811/4812524 面積 1 266
## 12268 https://udn.com/news/story/6811/4812524 飛彈 1 266
## 12269 https://udn.com/news/story/6811/4812524 首次 1 266
## 12270 https://udn.com/news/story/6811/4812524 海上 1 266
## 12271 https://udn.com/news/story/6811/4812524 海牙 1 266
## 12272 https://udn.com/news/story/6811/4812524 海洋 1 266
## 12273 https://udn.com/news/story/6811/4812524 海造陸 1 266
## 12274 https://udn.com/news/story/6811/4812524 涉及 1 266
## 12275 https://udn.com/news/story/6811/4812524 特定 1 266
## 12276 https://udn.com/news/story/6811/4812524 脅迫 1 266
## 12277 https://udn.com/news/story/6811/4812524 航務 1 266
## 12278 https://udn.com/news/story/6811/4812524 區域 1 266
## 12279 https://udn.com/news/story/6811/4812524 商務部長 1 266
## 12280 https://udn.com/news/story/6811/4812524 問題 1 266
## 12281 https://udn.com/news/story/6811/4812524 國企 1 266
## 12282 https://udn.com/news/story/6811/4812524 國有企業 1 266
## 12283 https://udn.com/news/story/6811/4812524 國家主權 1 266
## 12284 https://udn.com/news/story/6811/4812524 國務卿 1 266
## 12285 https://udn.com/news/story/6811/4812524 國務院 1 266
## 12286 https://udn.com/news/story/6811/4812524 國際法 1 266
## 12287 https://udn.com/news/story/6811/4812524 常設 1 266
## 12288 https://udn.com/news/story/6811/4812524 採取 1 266
## 12289 https://udn.com/news/story/6811/4812524 措施 1 266
## 12290 https://udn.com/news/story/6811/4812524 清單 1 266
## 12291 https://udn.com/news/story/6811/4812524 疏浚 1 266
## 12292 https://udn.com/news/story/6811/4812524 符合 1 266
## 12293 https://udn.com/news/story/6811/4812524 第二 1 266
## 12294 https://udn.com/news/story/6811/4812524 荷蘭 1 266
## 12295 https://udn.com/news/story/6811/4812524 設有 1 266
## 12296 https://udn.com/news/story/6811/4812524 設施 1 266
## 12297 https://udn.com/news/story/6811/4812524 透過 1 266
## 12298 https://udn.com/news/story/6811/4812524 這是 1 266
## 12299 https://udn.com/news/story/6811/4812524 部分 1 266
## 12300 https://udn.com/news/story/6811/4812524 尊重 1 266
## 12301 https://udn.com/news/story/6811/4812524 發布 1 266
## 12302 https://udn.com/news/story/6811/4812524 發表聲明 1 266
## 12303 https://udn.com/news/story/6811/4812524 菲律賓 1 266
## 12304 https://udn.com/news/story/6811/4812524 裁決 1 266
## 12305 https://udn.com/news/story/6811/4812524 超過 1 266
## 12306 https://udn.com/news/story/6811/4812524 開放 1 266
## 12307 https://udn.com/news/story/6811/4812524 填海 1 266
## 12308 https://udn.com/news/story/6811/4812524 當成 1 266
## 12309 https://udn.com/news/story/6811/4812524 盟友 1 266
## 12310 https://udn.com/news/story/6811/4812524 萬人 1 266
## 12311 https://udn.com/news/story/6811/4812524 萬人病 1 266
## 12312 https://udn.com/news/story/6811/4812524 過去 1 266
## 12313 https://udn.com/news/story/6811/4812524 圖表 1 266
## 12314 https://udn.com/news/story/6811/4812524 實體 1 266
## 12315 https://udn.com/news/story/6811/4812524 管制 1 266
## 12316 https://udn.com/news/story/6811/4812524 維繫 1 266
## 12317 https://udn.com/news/story/6811/4812524 認定 1 266
## 12318 https://udn.com/news/story/6811/4812524 駁斥 1 266
## 12319 https://udn.com/news/story/6811/4812524 增加 1 266
## 12320 https://udn.com/news/story/6811/4812524 廣州 1 266
## 12321 https://udn.com/news/story/6811/4812524 數據 1 266
## 12322 https://udn.com/news/story/6811/4812524 模糊 1 266
## 12323 https://udn.com/news/story/6811/4812524 確診 1 266
## 12324 https://udn.com/news/story/6811/4812524 鄰國 1 266
## 12325 https://udn.com/news/story/6811/4812524 橫跨 1 266
## 12326 https://udn.com/news/story/6811/4812524 隨即 1 266
## 12327 https://udn.com/news/story/6811/4812524 聲索 1 266
## 12328 https://udn.com/news/story/6811/4812524 聲索國 1 266
## 12329 https://udn.com/news/story/6811/4812524 點名 1 266
## 12330 https://udn.com/news/story/6811/4812524 羅斯 1 266
## 12331 https://udn.com/news/story/6811/4812588 一份 1 162
## 12332 https://udn.com/news/story/6811/4812588 人工 1 162
## 12333 https://udn.com/news/story/6811/4812588 人員 1 162
## 12334 https://udn.com/news/story/6811/4812588 八達 1 162
## 12335 https://udn.com/news/story/6811/4812588 力特 1 162
## 12336 https://udn.com/news/story/6811/4812588 大規模 1 162
## 12337 https://udn.com/news/story/6811/4812588 手段 1 162
## 12338 https://udn.com/news/story/6811/4812588 水下 1 162
## 12339 https://udn.com/news/story/6811/4812588 北京 1 162
## 12340 https://udn.com/news/story/6811/4812588 全球 1 162
## 12341 https://udn.com/news/story/6811/4812588 列入 1 162
## 12342 https://udn.com/news/story/6811/4812588 如下 1 162
## 12343 https://udn.com/news/story/6811/4812588 安全 1 162
## 12344 https://udn.com/news/story/6811/4812588 有限公司 1 162
## 12345 https://udn.com/news/story/6811/4812588 此次 1 162
## 12346 https://udn.com/news/story/6811/4812588 行為 1 162
## 12347 https://udn.com/news/story/6811/4812588 協助 1 162
## 12348 https://udn.com/news/story/6811/4812588 東南亞 1 162
## 12349 https://udn.com/news/story/6811/4812588 武漢 1 162
## 12350 https://udn.com/news/story/6811/4812588 爭議 1 162
## 12351 https://udn.com/news/story/6811/4812588 長海 1 162
## 12352 https://udn.com/news/story/6811/4812588 長嶺 1 162
## 12353 https://udn.com/news/story/6811/4812588 信息 1 162
## 12354 https://udn.com/news/story/6811/4812588 染疫 1 162
## 12355 https://udn.com/news/story/6811/4812588 活動 1 162
## 12356 https://udn.com/news/story/6811/4812588 科技開發 1 162
## 12357 https://udn.com/news/story/6811/4812588 美國商務部 1 162
## 12358 https://udn.com/news/story/6811/4812588 限制 1 162
## 12359 https://udn.com/news/story/6811/4812588 風險 1 162
## 12360 https://udn.com/news/story/6811/4812588 島礁 1 162
## 12361 https://udn.com/news/story/6811/4812588 桂林 1 162
## 12362 https://udn.com/news/story/6811/4812588 海格 1 162
## 12363 https://udn.com/news/story/6811/4812588 特立 1 162
## 12364 https://udn.com/news/story/6811/4812588 脅迫 1 162
## 12365 https://udn.com/news/story/6811/4812588 航空 1 162
## 12366 https://udn.com/news/story/6811/4812588 航務 1 162
## 12367 https://udn.com/news/story/6811/4812588 陝西 1 162
## 12368 https://udn.com/news/story/6811/4812588 勘察 1 162
## 12369 https://udn.com/news/story/6811/4812588 商務部 1 162
## 12370 https://udn.com/news/story/6811/4812588 國光 1 162
## 12371 https://udn.com/news/story/6811/4812588 國家 1 162
## 12372 https://udn.com/news/story/6811/4812588 國務卿 1 162
## 12373 https://udn.com/news/story/6811/4812588 崇新 1 162
## 12374 https://udn.com/news/story/6811/4812588 常州 1 162
## 12375 https://udn.com/news/story/6811/4812588 第七 1 162
## 12376 https://udn.com/news/story/6811/4812588 第二 1 162
## 12377 https://udn.com/news/story/6811/4812588 第三十 1 162
## 12378 https://udn.com/news/story/6811/4812588 船舶 1 162
## 12379 https://udn.com/news/story/6811/4812588 設計院 1 162
## 12380 https://udn.com/news/story/6811/4812588 通光 1 162
## 12381 https://udn.com/news/story/6811/4812588 部分 1 162
## 12382 https://udn.com/news/story/6811/4812588 凱波 1 162
## 12383 https://udn.com/news/story/6811/4812588 報導 1 162
## 12384 https://udn.com/news/story/6811/4812588 彭博 1 162
## 12385 https://udn.com/news/story/6811/4812588 湖北 1 162
## 12386 https://udn.com/news/story/6811/4812588 發展 1 162
## 12387 https://udn.com/news/story/6811/4812588 超過 1 162
## 12388 https://udn.com/news/story/6811/4812588 進行 1 162
## 12389 https://udn.com/news/story/6811/4812588 集團公司 1 162
## 12390 https://udn.com/news/story/6811/4812588 填海 1 162
## 12391 https://udn.com/news/story/6811/4812588 萬人 1 162
## 12392 https://udn.com/news/story/6811/4812588 萬人病 1 162
## 12393 https://udn.com/news/story/6811/4812588 資訊 1 162
## 12394 https://udn.com/news/story/6811/4812588 資源 1 162
## 12395 https://udn.com/news/story/6811/4812588 圖表 1 162
## 12396 https://udn.com/news/story/6811/4812588 實施 1 162
## 12397 https://udn.com/news/story/6811/4812588 廣有 1 162
## 12398 https://udn.com/news/story/6811/4812588 廣播 1 162
## 12399 https://udn.com/news/story/6811/4812588 廣興 1 162
## 12400 https://udn.com/news/story/6811/4812588 數據 1 162
## 12401 https://udn.com/news/story/6811/4812588 數據通信 1 162
## 12402 https://udn.com/news/story/6811/4812588 歐則 1 162
## 12403 https://udn.com/news/story/6811/4812588 確診 1 162
## 12404 https://udn.com/news/story/6811/4812588 器材 1 162
## 12405 https://udn.com/news/story/6811/4812588 導航 1 162
## 12406 https://udn.com/news/story/6811/4812588 據點 1 162
## 12407 https://udn.com/news/story/6811/4812588 獲取 1 162
## 12408 https://udn.com/news/story/6811/4812588 環佳 1 162
## 12409 https://udn.com/news/story/6811/4812588 鴻宇 1 162
## 12410 https://udn.com/news/story/6811/4812588 離岸 1 162
## 12411 https://udn.com/news/story/6811/4812588 簽證 1 162
## 12412 https://udn.com/news/story/6811/4812588 龐培 1 162
## 12413 https://udn.com/news/story/6813/4542826 了解 1 202
## 12414 https://udn.com/news/story/6813/4542826 人染疫 1 202
## 12415 https://udn.com/news/story/6813/4542826 人員 1 202
## 12416 https://udn.com/news/story/6813/4542826 上週 1 202
## 12417 https://udn.com/news/story/6813/4542826 大小 1 202
## 12418 https://udn.com/news/story/6813/4542826 川普 1 202
## 12419 https://udn.com/news/story/6813/4542826 不得 1 202
## 12420 https://udn.com/news/story/6813/4542826 中共 1 202
## 12421 https://udn.com/news/story/6813/4542826 中國 1 202
## 12422 https://udn.com/news/story/6813/4542826 之冠 1 202
## 12423 https://udn.com/news/story/6813/4542826 今日 1 202
## 12424 https://udn.com/news/story/6813/4542826 允許 1 202
## 12425 https://udn.com/news/story/6813/4542826 支持 1 202
## 12426 https://udn.com/news/story/6813/4542826 主席 1 202
## 12427 https://udn.com/news/story/6813/4542826 代價 1 202
## 12428 https://udn.com/news/story/6813/4542826 加強 1 202
## 12429 https://udn.com/news/story/6813/4542826 包括 1 202
## 12430 https://udn.com/news/story/6813/4542826 召開 1 202
## 12431 https://udn.com/news/story/6813/4542826 外洩 1 202
## 12432 https://udn.com/news/story/6813/4542826 市場 1 202
## 12433 https://udn.com/news/story/6813/4542826 未來 1 202
## 12434 https://udn.com/news/story/6813/4542826 任務 1 202
## 12435 https://udn.com/news/story/6813/4542826 全台 1 202
## 12436 https://udn.com/news/story/6813/4542826 再現 1 202
## 12437 https://udn.com/news/story/6813/4542826 危機 1 202
## 12438 https://udn.com/news/story/6813/4542826 各地 1 202
## 12439 https://udn.com/news/story/6813/4542826 因應 1 202
## 12440 https://udn.com/news/story/6813/4542826 安全 1 202
## 12441 https://udn.com/news/story/6813/4542826 死亡 1 202
## 12442 https://udn.com/news/story/6813/4542826 自然 1 202
## 12443 https://udn.com/news/story/6813/4542826 行為 1 202
## 12444 https://udn.com/news/story/6813/4542826 利用 1 202
## 12445 https://udn.com/news/story/6813/4542826 形象 1 202
## 12446 https://udn.com/news/story/6813/4542826 沒有 1 202
## 12447 https://udn.com/news/story/6813/4542826 防止 1 202
## 12448 https://udn.com/news/story/6813/4542826 兩艘 1 202
## 12449 https://udn.com/news/story/6813/4542826 定論 1 202
## 12450 https://udn.com/news/story/6813/4542826 怪罪 1 202
## 12451 https://udn.com/news/story/6813/4542826 油氣 1 202
## 12452 https://udn.com/news/story/6813/4542826 非人 1 202
## 12453 https://udn.com/news/story/6813/4542826 侵略 1 202
## 12454 https://udn.com/news/story/6813/4542826 冠狀病毒 1 202
## 12455 https://udn.com/news/story/6813/4542826 威脅 1 202
## 12456 https://udn.com/news/story/6813/4542826 指出 1 202
## 12457 https://udn.com/news/story/6813/4542826 故意 1 202
## 12458 https://udn.com/news/story/6813/4542826 看到 1 202
## 12459 https://udn.com/news/story/6813/4542826 研究所 1 202
## 12460 https://udn.com/news/story/6813/4542826 美國軍艦 1 202
## 12461 https://udn.com/news/story/6813/4542826 英國 1 202
## 12462 https://udn.com/news/story/6813/4542826 首長 1 202
## 12463 https://udn.com/news/story/6813/4542826 恐嚇 1 202
## 12464 https://udn.com/news/story/6813/4542826 海上 1 202
## 12465 https://udn.com/news/story/6813/4542826 海軍 1 202
## 12466 https://udn.com/news/story/6813/4542826 海鮮 1 202
## 12467 https://udn.com/news/story/6813/4542826 疾病 1 202
## 12468 https://udn.com/news/story/6813/4542826 病例 1 202
## 12469 https://udn.com/news/story/6813/4542826 真正 1 202
## 12470 https://udn.com/news/story/6813/4542826 訊息 1 202
## 12471 https://udn.com/news/story/6813/4542826 討論 1 202
## 12472 https://udn.com/news/story/6813/4542826 起源於 1 202
## 12473 https://udn.com/news/story/6813/4542826 參謀 1 202
## 12474 https://udn.com/news/story/6813/4542826 問到 1 202
## 12475 https://udn.com/news/story/6813/4542826 國防部長 1 202
## 12476 https://udn.com/news/story/6813/4542826 密利 1 202
## 12477 https://udn.com/news/story/6813/4542826 密利則 1 202
## 12478 https://udn.com/news/story/6813/4542826 將能 1 202
## 12479 https://udn.com/news/story/6813/4542826 專注 1 202
## 12480 https://udn.com/news/story/6813/4542826 專題 1 202
## 12481 https://udn.com/news/story/6813/4542826 得出 1 202
## 12482 https://udn.com/news/story/6813/4542826 從事 1 202
## 12483 https://udn.com/news/story/6813/4542826 情報 1 202
## 12484 https://udn.com/news/story/6813/4542826 清楚 1 202
## 12485 https://udn.com/news/story/6813/4542826 現有 1 202
## 12486 https://udn.com/news/story/6813/4542826 細節 1 202
## 12487 https://udn.com/news/story/6813/4542826 透明 1 202
## 12488 https://udn.com/news/story/6813/4542826 這場 1 202
## 12489 https://udn.com/news/story/6813/4542826 部隊 1 202
## 12490 https://udn.com/news/story/6813/4542826 報導 1 202
## 12491 https://udn.com/news/story/6813/4542826 掌握 1 202
## 12492 https://udn.com/news/story/6813/4542826 提升 1 202
## 12493 https://udn.com/news/story/6813/4542826 散播 1 202
## 12494 https://udn.com/news/story/6813/4542826 無法 1 202
## 12495 https://udn.com/news/story/6813/4542826 菲律賓 1 202
## 12496 https://udn.com/news/story/6813/4542826 虛假 1 202
## 12497 https://udn.com/news/story/6813/4542826 超越 1 202
## 12498 https://udn.com/news/story/6813/4542826 進入 1 202
## 12499 https://udn.com/news/story/6813/4542826 進行 1 202
## 12500 https://udn.com/news/story/6813/4542826 開放 1 202
## 12501 https://udn.com/news/story/6813/4542826 開採 1 202
## 12502 https://udn.com/news/story/6813/4542826 新冠 1 202
## 12503 https://udn.com/news/story/6813/4542826 新冠肺炎 1 202
## 12504 https://udn.com/news/story/6813/4542826 照顧 1 202
## 12505 https://udn.com/news/story/6813/4542826 經驗教訓 1 202
## 12506 https://udn.com/news/story/6813/4542826 義大利 1 202
## 12507 https://udn.com/news/story/6813/4542826 解放軍 1 202
## 12508 https://udn.com/news/story/6813/4542826 試圖 1 202
## 12509 https://udn.com/news/story/6813/4542826 過多 1 202
## 12510 https://udn.com/news/story/6813/4542826 實驗室 1 202
## 12511 https://udn.com/news/story/6813/4542826 維持 1 202
## 12512 https://udn.com/news/story/6813/4542826 歐洲 1 202
## 12513 https://udn.com/news/story/6813/4542826 確切 1 202
## 12514 https://udn.com/news/story/6813/4542826 確診 1 202
## 12515 https://udn.com/news/story/6813/4542826 戰略 1 202
## 12516 https://udn.com/news/story/6813/4542826 獲益 1 202
## 12517 https://udn.com/news/story/6813/4542826 總統 1 202
## 12518 https://udn.com/news/story/6813/4542826 聯合 1 202
## 12519 https://udn.com/news/story/6813/4542826 聯席會議 1 202
## 12520 https://udn.com/news/story/6813/4542826 藉此 1 202
## 12521 https://udn.com/news/story/6813/4542826 爆發 1 202
## 12522 https://udn.com/news/story/6813/4542826 競爭對手 1 202
## 12523 https://udn.com/news/story/6813/4542826 犧牲 1 202
## 12524 https://udn.com/news/story/6813/4693835 一次 1 111
## 12525 https://udn.com/news/story/6813/4693835 人士 1 111
## 12526 https://udn.com/news/story/6813/4693835 千萬 1 111
## 12527 https://udn.com/news/story/6813/4693835 大規模 1 111
## 12528 https://udn.com/news/story/6813/4693835 不知 1 111
## 12529 https://udn.com/news/story/6813/4693835 引述 1 111
## 12530 https://udn.com/news/story/6813/4693835 日起 1 111
## 12531 https://udn.com/news/story/6813/4693835 加劇 1 111
## 12532 https://udn.com/news/story/6813/4693835 北京 1 111
## 12533 https://udn.com/news/story/6813/4693835 尼米茲 1 111
## 12534 https://udn.com/news/story/6813/4693835 目前 1 111
## 12535 https://udn.com/news/story/6813/4693835 立即 1 111
## 12536 https://udn.com/news/story/6813/4693835 立場 1 111
## 12537 https://udn.com/news/story/6813/4693835 全球 1 111
## 12538 https://udn.com/news/story/6813/4693835 地區 1 111
## 12539 https://udn.com/news/story/6813/4693835 多次 1 111
## 12540 https://udn.com/news/story/6813/4693835 安全 1 111
## 12541 https://udn.com/news/story/6813/4693835 早有 1 111
## 12542 https://udn.com/news/story/6813/4693835 行動 1 111
## 12543 https://udn.com/news/story/6813/4693835 西沙 1 111
## 12544 https://udn.com/news/story/6813/4693835 但川普 1 111
## 12545 https://udn.com/news/story/6813/4693835 批評 1 111
## 12546 https://udn.com/news/story/6813/4693835 具名 1 111
## 12547 https://udn.com/news/story/6813/4693835 官方 1 111
## 12548 https://udn.com/news/story/6813/4693835 明顯 1 111
## 12549 https://udn.com/news/story/6813/4693835 爭奪 1 111
## 12550 https://udn.com/news/story/6813/4693835 知情 1 111
## 12551 https://udn.com/news/story/6813/4693835 表示 1 111
## 12552 https://udn.com/news/story/6813/4693835 表達 1 111
## 12553 https://udn.com/news/story/6813/4693835 近日 1 111
## 12554 https://udn.com/news/story/6813/4693835 近期 1 111
## 12555 https://udn.com/news/story/6813/4693835 冠狀病毒 1 111
## 12556 https://udn.com/news/story/6813/4693835 挑釁 1 111
## 12557 https://udn.com/news/story/6813/4693835 為期 1 111
## 12558 https://udn.com/news/story/6813/4693835 軍方 1 111
## 12559 https://udn.com/news/story/6813/4693835 軍演 1 111
## 12560 https://udn.com/news/story/6813/4693835 展開 1 111
## 12561 https://udn.com/news/story/6813/4693835 海域 1 111
## 12562 https://udn.com/news/story/6813/4693835 消息 1 111
## 12563 https://udn.com/news/story/6813/4693835 航空母艦 1 111
## 12564 https://udn.com/news/story/6813/4693835 訓練 1 111
## 12565 https://udn.com/news/story/6813/4693835 停止 1 111
## 12566 https://udn.com/news/story/6813/4693835 區域 1 111
## 12567 https://udn.com/news/story/6813/4693835 國家 1 111
## 12568 https://udn.com/news/story/6813/4693835 情勢 1 111
## 12569 https://udn.com/news/story/6813/4693835 推手 1 111
## 12570 https://udn.com/news/story/6813/4693835 細節 1 111
## 12571 https://udn.com/news/story/6813/4693835 報導 1 111
## 12572 https://udn.com/news/story/6813/4693835 媒體 1 111
## 12573 https://udn.com/news/story/6813/4693835 最大 1 111
## 12574 https://udn.com/news/story/6813/4693835 最新 1 111
## 12575 https://udn.com/news/story/6813/4693835 發言人 1 111
## 12576 https://udn.com/news/story/6813/4693835 發表 1 111
## 12577 https://udn.com/news/story/6813/4693835 貿易 1 111
## 12578 https://udn.com/news/story/6813/4693835 新型 1 111
## 12579 https://udn.com/news/story/6813/4693835 會議 1 111
## 12580 https://udn.com/news/story/6813/4693835 當局 1 111
## 12581 https://udn.com/news/story/6813/4693835 置評 1 111
## 12582 https://udn.com/news/story/6813/4693835 群島 1 111
## 12583 https://udn.com/news/story/6813/4693835 雷根 1 111
## 12584 https://udn.com/news/story/6813/4693835 圖表 1 111
## 12585 https://udn.com/news/story/6813/4693835 對此 1 111
## 12586 https://udn.com/news/story/6813/4693835 態勢 1 111
## 12587 https://udn.com/news/story/6813/4693835 演習 1 111
## 12588 https://udn.com/news/story/6813/4693835 緊張 1 111
## 12589 https://udn.com/news/story/6813/4693835 數飆 1 111
## 12590 https://udn.com/news/story/6813/4693835 確診 1 111
## 12591 https://udn.com/news/story/6813/4693835 據傳 1 111
## 12592 https://udn.com/news/story/6813/4693835 總統 1 111
## 12593 https://udn.com/news/story/6813/4693835 聲明 1 111
## 12594 https://udn.com/news/story/6813/4693835 舉動 1 111
## 12595 https://udn.com/news/story/6813/4693835 議題 1 111
## 12596 https://udn.com/news/story/6813/4693835 齟齬 1 111
## 12597 https://udn.com/news/story/6813/4693835 霸權 1 111
## 12598 https://udn.com/news/story/6813/4720296 一次 1 133
## 12599 https://udn.com/news/story/6813/4720296 一個月 1 133
## 12600 https://udn.com/news/story/6813/4720296 一國兩制 1 133
## 12601 https://udn.com/news/story/6813/4720296 不良 1 133
## 12602 https://udn.com/news/story/6813/4720296 不治破 1 133
## 12603 https://udn.com/news/story/6813/4720296 中心 1 133
## 12604 https://udn.com/news/story/6813/4720296 今年 1 133
## 12605 https://udn.com/news/story/6813/4720296 今年底 1 133
## 12606 https://udn.com/news/story/6813/4720296 公開 1 133
## 12607 https://udn.com/news/story/6813/4720296 反對 1 133
## 12608 https://udn.com/news/story/6813/4720296 日前 1 133
## 12609 https://udn.com/news/story/6813/4720296 主張 1 133
## 12610 https://udn.com/news/story/6813/4720296 主權 1 133
## 12611 https://udn.com/news/story/6813/4720296 以前 1 133
## 12612 https://udn.com/news/story/6813/4720296 加劇 1 133
## 12613 https://udn.com/news/story/6813/4720296 半年 1 133
## 12614 https://udn.com/news/story/6813/4720296 民主 1 133
## 12615 https://udn.com/news/story/6813/4720296 全球 1 133
## 12616 https://udn.com/news/story/6813/4720296 印太 1 133
## 12617 https://udn.com/news/story/6813/4720296 合作 1 133
## 12618 https://udn.com/news/story/6813/4720296 行為 1 133
## 12619 https://udn.com/news/story/6813/4720296 行動 1 133
## 12620 https://udn.com/news/story/6813/4720296 攻占 1 133
## 12621 https://udn.com/news/story/6813/4720296 更加 1 133
## 12622 https://udn.com/news/story/6813/4720296 沒有 1 133
## 12623 https://udn.com/news/story/6813/4720296 身分 1 133
## 12624 https://udn.com/news/story/6813/4720296 兩度 1 133
## 12625 https://udn.com/news/story/6813/4720296 取得 1 133
## 12626 https://udn.com/news/story/6813/4720296 建立 1 133
## 12627 https://udn.com/news/story/6813/4720296 疫情 1 133
## 12628 https://udn.com/news/story/6813/4720296 相信 1 133
## 12629 https://udn.com/news/story/6813/4720296 研究 1 133
## 12630 https://udn.com/news/story/6813/4720296 美中關係 1 133
## 12631 https://udn.com/news/story/6813/4720296 致力於 1 133
## 12632 https://udn.com/news/story/6813/4720296 風險 1 133
## 12633 https://udn.com/news/story/6813/4720296 首度 1 133
## 12634 https://udn.com/news/story/6813/4720296 島嶼 1 133
## 12635 https://udn.com/news/story/6813/4720296 破壞 1 133
## 12636 https://udn.com/news/story/6813/4720296 問題 1 133
## 12637 https://udn.com/news/story/6813/4720296 國防部 1 133
## 12638 https://udn.com/news/story/6813/4720296 國務卿 1 133
## 12639 https://udn.com/news/story/6813/4720296 控制 1 133
## 12640 https://udn.com/news/story/6813/4720296 推動 1 133
## 12641 https://udn.com/news/story/6813/4720296 這是 1 133
## 12642 https://udn.com/news/story/6813/4720296 提到 1 133
## 12643 https://udn.com/news/story/6813/4720296 智庫 1 133
## 12644 https://udn.com/news/story/6813/4720296 最新 1 133
## 12645 https://udn.com/news/story/6813/4720296 發表 1 133
## 12646 https://udn.com/news/story/6813/4720296 發表演說 1 133
## 12647 https://udn.com/news/story/6813/4720296 策略 1 133
## 12648 https://udn.com/news/story/6813/4720296 結束 1 133
## 12649 https://udn.com/news/story/6813/4720296 華府 1 133
## 12650 https://udn.com/news/story/6813/4720296 進展 1 133
## 12651 https://udn.com/news/story/6813/4720296 意圖 1 133
## 12652 https://udn.com/news/story/6813/4720296 意願 1 133
## 12653 https://udn.com/news/story/6813/4720296 新冠肺炎 1 133
## 12654 https://udn.com/news/story/6813/4720296 萬例 1 133
## 12655 https://udn.com/news/story/6813/4720296 解決 1 133
## 12656 https://udn.com/news/story/6813/4720296 過去 1 133
## 12657 https://udn.com/news/story/6813/4720296 圖表 1 133
## 12658 https://udn.com/news/story/6813/4720296 夥伴關係 1 133
## 12659 https://udn.com/news/story/6813/4720296 實施 1 133
## 12660 https://udn.com/news/story/6813/4720296 緊張 1 133
## 12661 https://udn.com/news/story/6813/4720296 誤判 1 133
## 12662 https://udn.com/news/story/6813/4720296 增加 1 133
## 12663 https://udn.com/news/story/6813/4720296 談及 1 133
## 12664 https://udn.com/news/story/6813/4720296 戰略 1 133
## 12665 https://udn.com/news/story/6813/4720296 機會 1 133
## 12666 https://udn.com/news/story/6813/4720296 遵守 1 133
## 12667 https://udn.com/news/story/6813/4720296 聲索 1 133
## 12668 https://udn.com/news/story/6813/4720296 舉行 1 133
## 12669 https://udn.com/news/story/6813/4720296 穩定 1 133
## 12670 https://udn.com/news/story/6813/4720296 龐培 1 133
## 12671 https://udn.com/news/story/6813/4720296 競爭 1 133
## 12672 https://udn.com/news/story/6813/4720296 體系 1 133
## 12673 https://udn.com/news/story/6813/5002062 一些 1 258
## 12674 https://udn.com/news/story/6813/5002062 一段 1 258
## 12675 https://udn.com/news/story/6813/5002062 一體 1 258
## 12676 https://udn.com/news/story/6813/5002062 入侵 1 258
## 12677 https://udn.com/news/story/6813/5002062 三思 1 258
## 12678 https://udn.com/news/story/6813/5002062 下滑 1 258
## 12679 https://udn.com/news/story/6813/5002062 中華 1 258
## 12680 https://udn.com/news/story/6813/5002062 今天 1 258
## 12681 https://udn.com/news/story/6813/5002062 今日 1 258
## 12682 https://udn.com/news/story/6813/5002062 內容 1 258
## 12683 https://udn.com/news/story/6813/5002062 內部 1 258
## 12684 https://udn.com/news/story/6813/5002062 公開 1 258
## 12685 https://udn.com/news/story/6813/5002062 升高 1 258
## 12686 https://udn.com/news/story/6813/5002062 升溫 1 258
## 12687 https://udn.com/news/story/6813/5002062 太平洋 1 258
## 12688 https://udn.com/news/story/6813/5002062 文中 1 258
## 12689 https://udn.com/news/story/6813/5002062 方式 1 258
## 12690 https://udn.com/news/story/6813/5002062 日前 1 258
## 12691 https://udn.com/news/story/6813/5002062 日益 1 258
## 12692 https://udn.com/news/story/6813/5002062 月號 1 258
## 12693 https://udn.com/news/story/6813/5002062 主持 1 258
## 12694 https://udn.com/news/story/6813/5002062 代表團 1 258
## 12695 https://udn.com/news/story/6813/5002062 出沒 1 258
## 12696 https://udn.com/news/story/6813/5002062 包括 1 258
## 12697 https://udn.com/news/story/6813/5002062 只會 1 258
## 12698 https://udn.com/news/story/6813/5002062 台美 1 258
## 12699 https://udn.com/news/story/6813/5002062 外交事務 1 258
## 12700 https://udn.com/news/story/6813/5002062 必須 1 258
## 12701 https://udn.com/news/story/6813/5002062 正在 1 258
## 12702 https://udn.com/news/story/6813/5002062 由康 1 258
## 12703 https://udn.com/news/story/6813/5002062 任職 1 258
## 12704 https://udn.com/news/story/6813/5002062 全球 1 258
## 12705 https://udn.com/news/story/6813/5002062 共軍 1 258
## 12706 https://udn.com/news/story/6813/5002062 印象 1 258
## 12707 https://udn.com/news/story/6813/5002062 危險 1 258
## 12708 https://udn.com/news/story/6813/5002062 回鍋 1 258
## 12709 https://udn.com/news/story/6813/5002062 因素 1 258
## 12710 https://udn.com/news/story/6813/5002062 有效 1 258
## 12711 https://udn.com/news/story/6813/5002062 有鑑於此 1 258
## 12712 https://udn.com/news/story/6813/5002062 次長 1 258
## 12713 https://udn.com/news/story/6813/5002062 自信心 1 258
## 12714 https://udn.com/news/story/6813/5002062 行赴 1 258
## 12715 https://udn.com/news/story/6813/5002062 行動 1 258
## 12716 https://udn.com/news/story/6813/5002062 西太平洋 1 258
## 12717 https://udn.com/news/story/6813/5002062 利益 1 258
## 12718 https://udn.com/news/story/6813/5002062 完整 1 258
## 12719 https://udn.com/news/story/6813/5002062 事務 1 258
## 12720 https://udn.com/news/story/6813/5002062 亞太地區 1 258
## 12721 https://udn.com/news/story/6813/5002062 兩人 1 258
## 12722 https://udn.com/news/story/6813/5002062 兩岸 1 258
## 12723 https://udn.com/news/story/6813/5002062 協同作戰 1 258
## 12724 https://udn.com/news/story/6813/5002062 和康 1 258
## 12725 https://udn.com/news/story/6813/5002062 東亞 1 258
## 12726 https://udn.com/news/story/6813/5002062 知名 1 258
## 12727 https://udn.com/news/story/6813/5002062 空海 1 258
## 12728 https://udn.com/news/story/6813/5002062 侵犯 1 258
## 12729 https://udn.com/news/story/6813/5002062 便是 1 258
## 12730 https://udn.com/news/story/6813/5002062 削弱 1 258
## 12731 https://udn.com/news/story/6813/5002062 威嚇 1 258
## 12732 https://udn.com/news/story/6813/5002062 宣示 1 258
## 12733 https://udn.com/news/story/6813/5002062 封鎖 1 258
## 12734 https://udn.com/news/story/6813/5002062 拜登 1 258
## 12735 https://udn.com/news/story/6813/5002062 拜會 1 258
## 12736 https://udn.com/news/story/6813/5002062 持續 1 258
## 12737 https://udn.com/news/story/6813/5002062 相加 1 258
## 12738 https://udn.com/news/story/6813/5002062 研究員 1 258
## 12739 https://udn.com/news/story/6813/5002062 研究院 1 258
## 12740 https://udn.com/news/story/6813/5002062 若能 1 258
## 12741 https://udn.com/news/story/6813/5002062 英國 1 258
## 12742 https://udn.com/news/story/6813/5002062 負責 1 258
## 12743 https://udn.com/news/story/6813/5002062 軍艦 1 258
## 12744 https://udn.com/news/story/6813/5002062 重建 1 258
## 12745 https://udn.com/news/story/6813/5002062 重要性 1 258
## 12746 https://udn.com/news/story/6813/5002062 面臨 1 258
## 12747 https://udn.com/news/story/6813/5002062 候選人 1 258
## 12748 https://udn.com/news/story/6813/5002062 倡議 1 258
## 12749 https://udn.com/news/story/6813/5002062 座談會 1 258
## 12750 https://udn.com/news/story/6813/5002062 時代 1 258
## 12751 https://udn.com/news/story/6813/5002062 時期 1 258
## 12752 https://udn.com/news/story/6813/5002062 消弭 1 258
## 12753 https://udn.com/news/story/6813/5002062 涉及 1 258
## 12754 https://udn.com/news/story/6813/5002062 針對 1 258
## 12755 https://udn.com/news/story/6813/5002062 國防 1 258
## 12756 https://udn.com/news/story/6813/5002062 國防部 1 258
## 12757 https://udn.com/news/story/6813/5002062 國防部長 1 258
## 12758 https://udn.com/news/story/6813/5002062 國家 1 258
## 12759 https://udn.com/news/story/6813/5002062 國策 1 258
## 12760 https://udn.com/news/story/6813/5002062 專區 1 258
## 12761 https://udn.com/news/story/6813/5002062 帶來 1 258
## 12762 https://udn.com/news/story/6813/5002062 帶領 1 258
## 12763 https://udn.com/news/story/6813/5002062 採取 1 258
## 12764 https://udn.com/news/story/6813/5002062 接受 1 258
## 12765 https://udn.com/news/story/6813/5002062 推動 1 258
## 12766 https://udn.com/news/story/6813/5002062 深切 1 258
## 12767 https://udn.com/news/story/6813/5002062 深度 1 258
## 12768 https://udn.com/news/story/6813/5002062 猛烈 1 258
## 12769 https://udn.com/news/story/6813/5002062 訪台 1 258
## 12770 https://udn.com/news/story/6813/5002062 訪問 1 258
## 12771 https://udn.com/news/story/6813/5002062 許多 1 258
## 12772 https://udn.com/news/story/6813/5002062 造成 1 258
## 12773 https://udn.com/news/story/6813/5002062 提及 1 258
## 12774 https://udn.com/news/story/6813/5002062 減弱 1 258
## 12775 https://udn.com/news/story/6813/5002062 發出 1 258
## 12776 https://udn.com/news/story/6813/5002062 發表 1 258
## 12777 https://udn.com/news/story/6813/5002062 發表文章 1 258
## 12778 https://udn.com/news/story/6813/5002062 華府 1 258
## 12779 https://udn.com/news/story/6813/5002062 進行 1 258
## 12780 https://udn.com/news/story/6813/5002062 開票 1 258
## 12781 https://udn.com/news/story/6813/5002062 開戰 1 258
## 12782 https://udn.com/news/story/6813/5002062 愈來愈 1 258
## 12783 https://udn.com/news/story/6813/5002062 新局 1 258
## 12784 https://udn.com/news/story/6813/5002062 當時 1 258
## 12785 https://udn.com/news/story/6813/5002062 過去 1 258
## 12786 https://udn.com/news/story/6813/5002062 遏阻 1 258
## 12787 https://udn.com/news/story/6813/5002062 預期 1 258
## 12788 https://udn.com/news/story/6813/5002062 團結 1 258
## 12789 https://udn.com/news/story/6813/5002062 演說 1 258
## 12790 https://udn.com/news/story/6813/5002062 種種 1 258
## 12791 https://udn.com/news/story/6813/5002062 認為 1 258
## 12792 https://udn.com/news/story/6813/5002062 誤判 1 258
## 12793 https://udn.com/news/story/6813/5002062 領導人 1 258
## 12794 https://udn.com/news/story/6813/5002062 數十年 1 258
## 12795 https://udn.com/news/story/6813/5002062 標題 1 258
## 12796 https://udn.com/news/story/6813/5002062 潛艇 1 258
## 12797 https://udn.com/news/story/6813/5002062 戰爭 1 258
## 12798 https://udn.com/news/story/6813/5002062 澳洲 1 258
## 12799 https://udn.com/news/story/6813/5002062 舉行 1 258
## 12800 https://udn.com/news/story/6813/5002062 避免 1 258
## 12801 https://udn.com/news/story/6813/5002062 點名 1 258
## 12802 https://udn.com/news/story/6813/5002062 雙月刊 1 258
## 12803 https://udn.com/news/story/6813/5002062 爆發 1 258
## 12804 https://udn.com/news/story/6813/5002062 關係 1 258
## 12805 https://udn.com/news/story/6813/5002062 競爭 1 258
## 12806 https://udn.com/news/story/6813/5002062 艦艇 1 258
## 12807 https://udn.com/news/story/6813/5002062 議題 1 258
## 12808 https://udn.com/news/story/6813/5200106 一共 1 162
## 12809 https://udn.com/news/story/6813/5200106 人事 1 162
## 12810 https://udn.com/news/story/6813/5200106 大規模 1 162
## 12811 https://udn.com/news/story/6813/5200106 大舉 1 162
## 12812 https://udn.com/news/story/6813/5200106 中共 1 162
## 12813 https://udn.com/news/story/6813/5200106 今天 1 162
## 12814 https://udn.com/news/story/6813/5200106 今年 1 162
## 12815 https://udn.com/news/story/6813/5200106 公布 1 162
## 12816 https://udn.com/news/story/6813/5200106 反潛機 1 162
## 12817 https://udn.com/news/story/6813/5200106 少將 1 162
## 12818 https://udn.com/news/story/6813/5200106 引述 1 162
## 12819 https://udn.com/news/story/6813/5200106 日才 1 162
## 12820 https://udn.com/news/story/6813/5200106 加級 1 162
## 12821 https://udn.com/news/story/6813/5200106 包括 1 162
## 12822 https://udn.com/news/story/6813/5200106 可說 1 162
## 12823 https://udn.com/news/story/6813/5200106 生涯 1 162
## 12824 https://udn.com/news/story/6813/5200106 目的 1 162
## 12825 https://udn.com/news/story/6813/5200106 交通 1 162
## 12826 https://udn.com/news/story/6813/5200106 全都 1 162
## 12827 https://udn.com/news/story/6813/5200106 再度 1 162
## 12828 https://udn.com/news/story/6813/5200106 如今 1 162
## 12829 https://udn.com/news/story/6813/5200106 安全 1 162
## 12830 https://udn.com/news/story/6813/5200106 有利於 1 162
## 12831 https://udn.com/news/story/6813/5200106 此舉 1 162
## 12832 https://udn.com/news/story/6813/5200106 至關重要 1 162
## 12833 https://udn.com/news/story/6813/5200106 巡洋艦 1 162
## 12834 https://udn.com/news/story/6813/5200106 邦克山 1 162
## 12835 https://udn.com/news/story/6813/5200106 來到 1 162
## 12836 https://udn.com/news/story/6813/5200106 所有 1 162
## 12837 https://udn.com/news/story/6813/5200106 明說 1 162
## 12838 https://udn.com/news/story/6813/5200106 服役 1 162
## 12839 https://udn.com/news/story/6813/5200106 林肯 1 162
## 12840 https://udn.com/news/story/6813/5200106 芬恩號 1 162
## 12841 https://udn.com/news/story/6813/5200106 非常 1 162
## 12842 https://udn.com/news/story/6813/5200106 侵入 1 162
## 12843 https://udn.com/news/story/6813/5200106 侵擾 1 162
## 12844 https://udn.com/news/story/6813/5200106 勃克級 1 162
## 12845 https://udn.com/news/story/6813/5200106 宣誓就職 1 162
## 12846 https://udn.com/news/story/6813/5200106 建立 1 162
## 12847 https://udn.com/news/story/6813/5200106 很棒 1 162
## 12848 https://udn.com/news/story/6813/5200106 拜登 1 162
## 12849 https://udn.com/news/story/6813/5200106 持續 1 162
## 12850 https://udn.com/news/story/6813/5200106 指出 1 162
## 12851 https://udn.com/news/story/6813/5200106 指揮官 1 162
## 12852 https://udn.com/news/story/6813/5200106 挑戰 1 162
## 12853 https://udn.com/news/story/6813/5200106 架運 1 162
## 12854 https://udn.com/news/story/6813/5200106 派出 1 162
## 12855 https://udn.com/news/story/6813/5200106 穿梭 1 162
## 12856 https://udn.com/news/story/6813/5200106 穿過 1 162
## 12857 https://udn.com/news/story/6813/5200106 美方 1 162
## 12858 https://udn.com/news/story/6813/5200106 軍機 1 162
## 12859 https://udn.com/news/story/6813/5200106 重大 1 162
## 12860 https://udn.com/news/story/6813/5200106 重要 1 162
## 12861 https://udn.com/news/story/6813/5200106 原因 1 162
## 12862 https://udn.com/news/story/6813/5200106 海上 1 162
## 12863 https://udn.com/news/story/6813/5200106 海軍 1 162
## 12864 https://udn.com/news/story/6813/5200106 海域 1 162
## 12865 https://udn.com/news/story/6813/5200106 能夠 1 162
## 12866 https://udn.com/news/story/6813/5200106 航艦 1 162
## 12867 https://udn.com/news/story/6813/5200106 區域 1 162
## 12868 https://udn.com/news/story/6813/5200106 參議院 1 162
## 12869 https://udn.com/news/story/6813/5200106 國防部 1 162
## 12870 https://udn.com/news/story/6813/5200106 國家 1 162
## 12871 https://udn.com/news/story/6813/5200106 國務卿 1 162
## 12872 https://udn.com/news/story/6813/5200106 康德羅 1 162
## 12873 https://udn.com/news/story/6813/5200106 這裡 1 162
## 12874 https://udn.com/news/story/6813/5200106 部署 1 162
## 12875 https://udn.com/news/story/6813/5200106 報導 1 162
## 12876 https://udn.com/news/story/6813/5200106 提名 1 162
## 12877 https://udn.com/news/story/6813/5200106 無疑 1 162
## 12878 https://udn.com/news/story/6813/5200106 發表 1 162
## 12879 https://udn.com/news/story/6813/5200106 發展 1 162
## 12880 https://udn.com/news/story/6813/5200106 貿易 1 162
## 12881 https://udn.com/news/story/6813/5200106 群還 1 162
## 12882 https://udn.com/news/story/6813/5200106 號航艦 1 162
## 12883 https://udn.com/news/story/6813/5200106 資訊 1 162
## 12884 https://udn.com/news/story/6813/5200106 路透社 1 162
## 12885 https://udn.com/news/story/6813/5200106 過去 1 162
## 12886 https://udn.com/news/story/6813/5200106 夥伴 1 162
## 12887 https://udn.com/news/story/6813/5200106 夥伴國 1 162
## 12888 https://udn.com/news/story/6813/5200106 夥伴關係 1 162
## 12889 https://udn.com/news/story/6813/5200106 構成 1 162
## 12890 https://udn.com/news/story/6813/5200106 維持 1 162
## 12891 https://udn.com/news/story/6813/5200106 確保 1 162
## 12892 https://udn.com/news/story/6813/5200106 遵守規則 1 162
## 12893 https://udn.com/news/story/6813/5200106 總統 1 162
## 12894 https://udn.com/news/story/6813/5200106 繁榮 1 162
## 12895 https://udn.com/news/story/6813/5200106 聯邦 1 162
## 12896 https://udn.com/news/story/6813/5200106 還說 1 162
## 12897 https://udn.com/news/story/6813/5200106 擾台 1 162
## 12898 https://udn.com/news/story/6813/5200106 羅素 1 162
## 12899 https://udn.com/news/story/6813/5200106 艦長 1 162
## 12900 https://udn.com/news/story/6813/5200106 驅逐艦 1 162
## 12901 https://udn.com/news/story/6813/5200106 聽證會 1 162
## 12902 https://udn.com/news/story/6813/5244746 一再 1 166
## 12903 https://udn.com/news/story/6813/5244746 一艘 1 166
## 12904 https://udn.com/news/story/6813/5244746 已成 1 166
## 12905 https://udn.com/news/story/6813/5244746 不滿 1 166
## 12906 https://udn.com/news/story/6813/5244746 中方 1 166
## 12907 https://udn.com/news/story/6813/5244746 互通性 1 166
## 12908 https://udn.com/news/story/6813/5244746 今天 1 166
## 12909 https://udn.com/news/story/6813/5244746 化及 1 166
## 12910 https://udn.com/news/story/6813/5244746 升高 1 166
## 12911 https://udn.com/news/story/6813/5244746 反駁 1 166
## 12912 https://udn.com/news/story/6813/5244746 少將 1 166
## 12913 https://udn.com/news/story/6813/5244746 引爆 1 166
## 12914 https://udn.com/news/story/6813/5244746 水域 1 166
## 12915 https://udn.com/news/story/6813/5244746 占有 1 166
## 12916 https://udn.com/news/story/6813/5244746 另個 1 166
## 12917 https://udn.com/news/story/6813/5244746 交通要道 1 166
## 12918 https://udn.com/news/story/6813/5244746 合法 1 166
## 12919 https://udn.com/news/story/6813/5244746 多項 1 166
## 12920 https://udn.com/news/story/6813/5244746 自由 1 166
## 12921 https://udn.com/news/story/6813/5244746 自然資源 1 166
## 12922 https://udn.com/news/story/6813/5244746 西沙 1 166
## 12923 https://udn.com/news/story/6813/5244746 作業 1 166
## 12924 https://udn.com/news/story/6813/5244746 並在 1 166
## 12925 https://udn.com/news/story/6813/5244746 並說 1 166
## 12926 https://udn.com/news/story/6813/5244746 使用 1 166
## 12927 https://udn.com/news/story/6813/5244746 侃號 1 166
## 12928 https://udn.com/news/story/6813/5244746 依據 1 166
## 12929 https://udn.com/news/story/6813/5244746 兩艘 1 166
## 12930 https://udn.com/news/story/6813/5244746 所有 1 166
## 12931 https://udn.com/news/story/6813/5244746 抨擊 1 166
## 12932 https://udn.com/news/story/6813/5244746 明說 1 166
## 12933 https://udn.com/news/story/6813/5244746 爭議 1 166
## 12934 https://udn.com/news/story/6813/5244746 勃克級 1 166
## 12935 https://udn.com/news/story/6813/5244746 威嚇 1 166
## 12936 https://udn.com/news/story/6813/5244746 拜登 1 166
## 12937 https://udn.com/news/story/6813/5244746 指揮 1 166
## 12938 https://udn.com/news/story/6813/5244746 指揮官 1 166
## 12939 https://udn.com/news/story/6813/5244746 柯克 1 166
## 12940 https://udn.com/news/story/6813/5244746 美中 1 166
## 12941 https://udn.com/news/story/6813/5244746 致力於 1 166
## 12942 https://udn.com/news/story/6813/5244746 軍事 1 166
## 12943 https://udn.com/news/story/6813/5244746 軍演 1 166
## 12944 https://udn.com/news/story/6813/5244746 重疊 1 166
## 12945 https://udn.com/news/story/6813/5244746 島嶼 1 166
## 12946 https://udn.com/news/story/6813/5244746 島礁 1 166
## 12947 https://udn.com/news/story/6813/5244746 海上 1 166
## 12948 https://udn.com/news/story/6813/5244746 能力 1 166
## 12949 https://udn.com/news/story/6813/5244746 馬來西亞 1 166
## 12950 https://udn.com/news/story/6813/5244746 國家 1 166
## 12951 https://udn.com/news/story/6813/5244746 國際法 1 166
## 12952 https://udn.com/news/story/6813/5244746 情勢 1 166
## 12953 https://udn.com/news/story/6813/5244746 這條 1 166
## 12954 https://udn.com/news/story/6813/5244746 這類 1 166
## 12955 https://udn.com/news/story/6813/5244746 就任 1 166
## 12956 https://udn.com/news/story/6813/5244746 提高 1 166
## 12957 https://udn.com/news/story/6813/5244746 無可否認 1 166
## 12958 https://udn.com/news/story/6813/5244746 發表 1 166
## 12959 https://udn.com/news/story/6813/5244746 菲律賓 1 166
## 12960 https://udn.com/news/story/6813/5244746 越南 1 166
## 12961 https://udn.com/news/story/6813/5244746 意圖 1 166
## 12962 https://udn.com/news/story/6813/5244746 群島 1 166
## 12963 https://udn.com/news/story/6813/5244746 號航艦 1 166
## 12964 https://udn.com/news/story/6813/5244746 像是 1 166
## 12965 https://udn.com/news/story/6813/5244746 演習 1 166
## 12966 https://udn.com/news/story/6813/5244746 管制 1 166
## 12967 https://udn.com/news/story/6813/5244746 蓄意 1 166
## 12968 https://udn.com/news/story/6813/5244746 領土 1 166
## 12969 https://udn.com/news/story/6813/5244746 廣闊 1 166
## 12970 https://udn.com/news/story/6813/5244746 確保 1 166
## 12971 https://udn.com/news/story/6813/5244746 衝突 1 166
## 12972 https://udn.com/news/story/6813/5244746 導向飛彈 1 166
## 12973 https://udn.com/news/story/6813/5244746 戰艦 1 166
## 12974 https://udn.com/news/story/6813/5244746 擁有 1 166
## 12975 https://udn.com/news/story/6813/5244746 總統 1 166
## 12976 https://udn.com/news/story/6813/5244746 聲稱 1 166
## 12977 https://udn.com/news/story/6813/5244746 豐富 1 166
## 12978 https://udn.com/news/story/6813/5244746 羅斯福 1 166
## 12979 https://udn.com/news/story/6813/5244746 關係 1 166
## 12980 https://udn.com/news/story/6813/5244746 蘊藏 1 166
## 12981 https://udn.com/news/story/6813/5244746 驅逐艦 1 166
## 12982 https://udn.com/news/story/7331/4308946 予以 1 73
## 12983 https://udn.com/news/story/7331/4308946 必要措施 1 73
## 12984 https://udn.com/news/story/7331/4308946 全程 1 73
## 12985 https://udn.com/news/story/7331/4308946 地區 1 73
## 12986 https://udn.com/news/story/7331/4308946 行徑 1 73
## 12987 https://udn.com/news/story/7331/4308946 兵力 1 73
## 12988 https://udn.com/news/story/7331/4308946 戒備 1 73
## 12989 https://udn.com/news/story/7331/4308946 李華敏 1 73
## 12990 https://udn.com/news/story/7331/4308946 赤裸裸 1 73
## 12991 https://udn.com/news/story/7331/4308946 和平 1 73
## 12992 https://udn.com/news/story/7331/4308946 居心叵測 1 73
## 12993 https://udn.com/news/story/7331/4308946 花樣 1 73
## 12994 https://udn.com/news/story/7331/4308946 表示 1 73
## 12995 https://udn.com/news/story/7331/4308946 近海 1 73
## 12996 https://udn.com/news/story/7331/4308946 附近 1 73
## 12997 https://udn.com/news/story/7331/4308946 保持 1 73
## 12998 https://udn.com/news/story/7331/4308946 南沙 1 73
## 12999 https://udn.com/news/story/7331/4308946 南海 1 73
## 13000 https://udn.com/news/story/7331/4308946 南海諸島 1 73
## 13001 https://udn.com/news/story/7331/4308946 南部 1 73
## 13002 https://udn.com/news/story/7331/4308946 美方 1 73
## 13003 https://udn.com/news/story/7331/4308946 美國 1 73
## 13004 https://udn.com/news/story/7331/4308946 美艦 1 73
## 13005 https://udn.com/news/story/7331/4308946 徒勞無益 1 73
## 13006 https://udn.com/news/story/7331/4308946 捍衛 1 73
## 13007 https://udn.com/news/story/7331/4308946 時刻 1 73
## 13008 https://udn.com/news/story/7331/4308946 海空 1 73
## 13009 https://udn.com/news/story/7331/4308946 海軍 1 73
## 13010 https://udn.com/news/story/7331/4308946 航行 1 73
## 13011 https://udn.com/news/story/7331/4308946 高度 1 73
## 13012 https://udn.com/news/story/7331/4308946 強調 1 73
## 13013 https://udn.com/news/story/7331/4308946 採取 1 73
## 13014 https://udn.com/news/story/7331/4308946 處心積慮 1 73
## 13015 https://udn.com/news/story/7331/4308946 部隊 1 73
## 13016 https://udn.com/news/story/7331/4308946 最後 1 73
## 13017 https://udn.com/news/story/7331/4308946 期間 1 73
## 13018 https://udn.com/news/story/7331/4308946 滋事 1 73
## 13019 https://udn.com/news/story/7331/4308946 無可爭辯 1 73
## 13020 https://udn.com/news/story/7331/4308946 發言人 1 73
## 13021 https://udn.com/news/story/7331/4308946 傳統 1 73
## 13022 https://udn.com/news/story/7331/4308946 新春佳節 1 73
## 13023 https://udn.com/news/story/7331/4308946 新聞 1 73
## 13024 https://udn.com/news/story/7331/4308946 群島 1 73
## 13025 https://udn.com/news/story/7331/4308946 跟蹤 1 73
## 13026 https://udn.com/news/story/7331/4308946 監控 1 73
## 13027 https://udn.com/news/story/7331/4308946 維護 1 73
## 13028 https://udn.com/news/story/7331/4308946 蒙哥馬利 1 73
## 13029 https://udn.com/news/story/7331/4308946 蓄意 1 73
## 13030 https://udn.com/news/story/7331/4308946 擁有 1 73
## 13031 https://udn.com/news/story/7331/4308946 擅闖 1 73
## 13032 https://udn.com/news/story/7331/4308946 穩定 1 73
## 13033 https://udn.com/news/story/7331/4308946 證實 1 73
## 13034 https://udn.com/news/story/7331/4308946 警告 1 73
## 13035 https://udn.com/news/story/7331/4308946 霸權 1 73
## 13036 https://udn.com/news/story/7331/4308946 驅逐艦 1 73
## 13037 https://udn.com/news/story/7331/4308946 驅離 1 73
## 13038 https://udn.com/news/story/7331/4308946 變化 1 73
## 13039 https://udn.com/news/story/7331/4414231 一而再 1 186
## 13040 https://udn.com/news/story/7331/4414231 一張 1 186
## 13041 https://udn.com/news/story/7331/4414231 上傳 1 186
## 13042 https://udn.com/news/story/7331/4414231 上路 1 186
## 13043 https://udn.com/news/story/7331/4414231 口罩 1 186
## 13044 https://udn.com/news/story/7331/4414231 大校 1 186
## 13045 https://udn.com/news/story/7331/4414231 中隊 1 186
## 13046 https://udn.com/news/story/7331/4414231 之源 1 186
## 13047 https://udn.com/news/story/7331/4414231 予以 1 186
## 13048 https://udn.com/news/story/7331/4414231 互動 1 186
## 13049 https://udn.com/news/story/7331/4414231 公布 1 186
## 13050 https://udn.com/news/story/7331/4414231 支援 1 186
## 13051 https://udn.com/news/story/7331/4414231 方面 1 186
## 13052 https://udn.com/news/story/7331/4414231 火力 1 186
## 13053 https://udn.com/news/story/7331/4414231 代表 1 186
## 13054 https://udn.com/news/story/7331/4414231 打著 1 186
## 13055 https://udn.com/news/story/7331/4414231 本月 1 186
## 13056 https://udn.com/news/story/7331/4414231 任務 1 186
## 13057 https://udn.com/news/story/7331/4414231 全程 1 186
## 13058 https://udn.com/news/story/7331/4414231 再而三 1 186
## 13059 https://udn.com/news/story/7331/4414231 各國 1 186
## 13060 https://udn.com/news/story/7331/4414231 合作 1 186
## 13061 https://udn.com/news/story/7331/4414231 吉福茲號 1 186
## 13062 https://udn.com/news/story/7331/4414231 地區 1 186
## 13063 https://udn.com/news/story/7331/4414231 地圖 1 186
## 13064 https://udn.com/news/story/7331/4414231 多國 1 186
## 13065 https://udn.com/news/story/7331/4414231 多張 1 186
## 13066 https://udn.com/news/story/7331/4414231 年度 1 186
## 13067 https://udn.com/news/story/7331/4414231 收穫 1 186
## 13068 https://udn.com/news/story/7331/4414231 肌肉 1 186
## 13069 https://udn.com/news/story/7331/4414231 自由 1 186
## 13070 https://udn.com/news/story/7331/4414231 行徑 1 186
## 13071 https://udn.com/news/story/7331/4414231 行動 1 186
## 13072 https://udn.com/news/story/7331/4414231 兵力 1 186
## 13073 https://udn.com/news/story/7331/4414231 即時 1 186
## 13074 https://udn.com/news/story/7331/4414231 攻擊 1 186
## 13075 https://udn.com/news/story/7331/4414231 更新 1 186
## 13076 https://udn.com/news/story/7331/4414231 李華敏 1 186
## 13077 https://udn.com/news/story/7331/4414231 決策 1 186
## 13078 https://udn.com/news/story/7331/4414231 並未 1 186
## 13079 https://udn.com/news/story/7331/4414231 來源 1 186
## 13080 https://udn.com/news/story/7331/4414231 例行 1 186
## 13081 https://udn.com/news/story/7331/4414231 兩棲 1 186
## 13082 https://udn.com/news/story/7331/4414231 兩艘 1 186
## 13083 https://udn.com/news/story/7331/4414231 具體內容 1 186
## 13084 https://udn.com/news/story/7331/4414231 協同 1 186
## 13085 https://udn.com/news/story/7331/4414231 和平 1 186
## 13086 https://udn.com/news/story/7331/4414231 夜間 1 186
## 13087 https://udn.com/news/story/7331/4414231 社交 1 186
## 13088 https://udn.com/news/story/7331/4414231 空戰 1 186
## 13089 https://udn.com/news/story/7331/4414231 近日 1 186
## 13090 https://udn.com/news/story/7331/4414231 威脅 1 186
## 13091 https://udn.com/news/story/7331/4414231 持續 1 186
## 13092 https://udn.com/news/story/7331/4414231 指揮官 1 186
## 13093 https://udn.com/news/story/7331/4414231 挑釁 1 186
## 13094 https://udn.com/news/story/7331/4414231 查證 1 186
## 13095 https://udn.com/news/story/7331/4414231 活動 1 186
## 13096 https://udn.com/news/story/7331/4414231 炸射 1 186
## 13097 https://udn.com/news/story/7331/4414231 美方 1 186
## 13098 https://udn.com/news/story/7331/4414231 軍艦 1 186
## 13099 https://udn.com/news/story/7331/4414231 首次 1 186
## 13100 https://udn.com/news/story/7331/4414231 個案 1 186
## 13101 https://udn.com/news/story/7331/4414231 哪裡 1 186
## 13102 https://udn.com/news/story/7331/4414231 案例 1 186
## 13103 https://udn.com/news/story/7331/4414231 海空 1 186
## 13104 https://udn.com/news/story/7331/4414231 海軍 1 186
## 13105 https://udn.com/news/story/7331/4414231 特別 1 186
## 13106 https://udn.com/news/story/7331/4414231 病例 1 186
## 13107 https://udn.com/news/story/7331/4414231 追蹤 1 186
## 13108 https://udn.com/news/story/7331/4414231 參與 1 186
## 13109 https://udn.com/news/story/7331/4414231 國際法 1 186
## 13110 https://udn.com/news/story/7331/4414231 執行 1 186
## 13111 https://udn.com/news/story/7331/4414231 情況 1 186
## 13112 https://udn.com/news/story/7331/4414231 教戰 1 186
## 13113 https://udn.com/news/story/7331/4414231 眼鏡蛇 1 186
## 13114 https://udn.com/news/story/7331/4414231 累計 1 186
## 13115 https://udn.com/news/story/7331/4414231 組織 1 186
## 13116 https://udn.com/news/story/7331/4414231 統計 1 186
## 13117 https://udn.com/news/story/7331/4414231 規則 1 186
## 13118 https://udn.com/news/story/7331/4414231 透露 1 186
## 13119 https://udn.com/news/story/7331/4414231 這次 1 186
## 13120 https://udn.com/news/story/7331/4414231 報導 1 186
## 13121 https://udn.com/news/story/7331/4414231 媒體 1 186
## 13122 https://udn.com/news/story/7331/4414231 最有 1 186
## 13123 https://udn.com/news/story/7331/4414231 最新 1 186
## 13124 https://udn.com/news/story/7331/4414231 滋事 1 186
## 13125 https://udn.com/news/story/7331/4414231 發言人 1 186
## 13126 https://udn.com/news/story/7331/4414231 進一步 1 186
## 13127 https://udn.com/news/story/7331/4414231 進行 1 186
## 13128 https://udn.com/news/story/7331/4414231 項目 1 186
## 13129 https://udn.com/news/story/7331/4414231 須知 1 186
## 13130 https://udn.com/news/story/7331/4414231 幌子 1 186
## 13131 https://udn.com/news/story/7331/4414231 感染 1 186
## 13132 https://udn.com/news/story/7331/4414231 當時 1 186
## 13133 https://udn.com/news/story/7331/4414231 群聚 1 186
## 13134 https://udn.com/news/story/7331/4414231 解放軍 1 186
## 13135 https://udn.com/news/story/7331/4414231 跟蹤 1 186
## 13136 https://udn.com/news/story/7331/4414231 違反 1 186
## 13137 https://udn.com/news/story/7331/4414231 預購 1 186
## 13138 https://udn.com/news/story/7331/4414231 圖解 1 186
## 13139 https://udn.com/news/story/7331/4414231 實名制 1 186
## 13140 https://udn.com/news/story/7331/4414231 監視 1 186
## 13141 https://udn.com/news/story/7331/4414231 禍亂 1 186
## 13142 https://udn.com/news/story/7331/4414231 網路 1 186
## 13143 https://udn.com/news/story/7331/4414231 價值 1 186
## 13144 https://udn.com/news/story/7331/4414231 模擬 1 186
## 13145 https://udn.com/news/story/7331/4414231 歐美 1 186
## 13146 https://udn.com/news/story/7331/4414231 戰艦 1 186
## 13147 https://udn.com/news/story/7331/4414231 講述 1 186
## 13148 https://udn.com/news/story/7331/4414231 簡短 1 186
## 13149 https://udn.com/news/story/7331/4414231 穩定 1 186
## 13150 https://udn.com/news/story/7331/4414231 識別 1 186
## 13151 https://udn.com/news/story/7331/4414231 關係 1 186
## 13152 https://udn.com/news/story/7331/4414231 警告 1 186
## 13153 https://udn.com/news/story/7331/4414231 贏在 1 186
## 13154 https://udn.com/news/story/7331/4414231 霸權 1 186
## 13155 https://udn.com/news/story/7331/4414231 飆升 1 186
## 13156 https://udn.com/news/story/7331/4414231 驅逐艦 1 186
## 13157 https://udn.com/news/story/7331/4414231 驅離 1 186
## 13158 https://udn.com/news/story/7331/4414231 顯示 1 186
## 13159 https://udn.com/news/story/7331/4488979 一艘 1 221
## 13160 https://udn.com/news/story/7331/4488979 人民解放軍 1 221
## 13161 https://udn.com/news/story/7331/4488979 人為 1 221
## 13162 https://udn.com/news/story/7331/4488979 八艘 1 221
## 13163 https://udn.com/news/story/7331/4488979 上午 1 221
## 13164 https://udn.com/news/story/7331/4488979 上周五 1 221
## 13165 https://udn.com/news/story/7331/4488979 大陸 1 221
## 13166 https://udn.com/news/story/7331/4488979 今後 1 221
## 13167 https://udn.com/news/story/7331/4488979 仍將 1 221
## 13168 https://udn.com/news/story/7331/4488979 公主 1 221
## 13169 https://udn.com/news/story/7331/4488979 充分 1 221
## 13170 https://udn.com/news/story/7331/4488979 加快 1 221
## 13171 https://udn.com/news/story/7331/4488979 包括 1 221
## 13172 https://udn.com/news/story/7331/4488979 去年 1 221
## 13173 https://udn.com/news/story/7331/4488979 史順文 1 221
## 13174 https://udn.com/news/story/7331/4488979 外海 1 221
## 13175 https://udn.com/news/story/7331/4488979 正在 1 221
## 13176 https://udn.com/news/story/7331/4488979 目前 1 221
## 13177 https://udn.com/news/story/7331/4488979 全球 1 221
## 13178 https://udn.com/news/story/7331/4488979 各國 1 221
## 13179 https://udn.com/news/story/7331/4488979 守望 1 221
## 13180 https://udn.com/news/story/7331/4488979 成為 1 221
## 13181 https://udn.com/news/story/7331/4488979 死亡 1 221
## 13182 https://udn.com/news/story/7331/4488979 作戰 1 221
## 13183 https://udn.com/news/story/7331/4488979 更新 1 221
## 13184 https://udn.com/news/story/7331/4488979 防衛 1 221
## 13185 https://udn.com/news/story/7331/4488979 亞太地區 1 221
## 13186 https://udn.com/news/story/7331/4488979 例行 1 221
## 13187 https://udn.com/news/story/7331/4488979 周邊 1 221
## 13188 https://udn.com/news/story/7331/4488979 官方 1 221
## 13189 https://udn.com/news/story/7331/4488979 披露 1 221
## 13190 https://udn.com/news/story/7331/4488979 服役 1 221
## 13191 https://udn.com/news/story/7331/4488979 東部 1 221
## 13192 https://udn.com/news/story/7331/4488979 直抵 1 221
## 13193 https://udn.com/news/story/7331/4488979 知名 1 221
## 13194 https://udn.com/news/story/7331/4488979 空域 1 221
## 13195 https://udn.com/news/story/7331/4488979 近日 1 221
## 13196 https://udn.com/news/story/7331/4488979 持續 1 221
## 13197 https://udn.com/news/story/7331/4488979 活動 1 221
## 13198 https://udn.com/news/story/7331/4488979 珊瑚 1 221
## 13199 https://udn.com/news/story/7331/4488979 相繼 1 221
## 13200 https://udn.com/news/story/7331/4488979 穿行 1 221
## 13201 https://udn.com/news/story/7331/4488979 穿越 1 221
## 13202 https://udn.com/news/story/7331/4488979 美國 1 221
## 13203 https://udn.com/news/story/7331/4488979 計畫 1 221
## 13204 https://udn.com/news/story/7331/4488979 飛行器 1 221
## 13205 https://udn.com/news/story/7331/4488979 飛機 1 221
## 13206 https://udn.com/news/story/7331/4488979 個案 1 221
## 13207 https://udn.com/news/story/7331/4488979 宮古 1 221
## 13208 https://udn.com/news/story/7331/4488979 島鏈 1 221
## 13209 https://udn.com/news/story/7331/4488979 旅客 1 221
## 13210 https://udn.com/news/story/7331/4488979 時代 1 221
## 13211 https://udn.com/news/story/7331/4488979 核動力 1 221
## 13212 https://udn.com/news/story/7331/4488979 案例 1 221
## 13213 https://udn.com/news/story/7331/4488979 海峽 1 221
## 13214 https://udn.com/news/story/7331/4488979 海域 1 221
## 13215 https://udn.com/news/story/7331/4488979 消息 1 221
## 13216 https://udn.com/news/story/7331/4488979 病例 1 221
## 13217 https://udn.com/news/story/7331/4488979 能力 1 221
## 13218 https://udn.com/news/story/7331/4488979 航經 1 221
## 13219 https://udn.com/news/story/7331/4488979 訓練 1 221
## 13220 https://udn.com/news/story/7331/4488979 高秀成 1 221
## 13221 https://udn.com/news/story/7331/4488979 偵察機 1 221
## 13222 https://udn.com/news/story/7331/4488979 動態 1 221
## 13223 https://udn.com/news/story/7331/4488979 唯一 1 221
## 13224 https://udn.com/news/story/7331/4488979 國家 1 221
## 13225 https://udn.com/news/story/7331/4488979 國際法 1 221
## 13226 https://udn.com/news/story/7331/4488979 國際慣例 1 221
## 13227 https://udn.com/news/story/7331/4488979 密切 1 221
## 13228 https://udn.com/news/story/7331/4488979 常態 1 221
## 13229 https://udn.com/news/story/7331/4488979 推特 1 221
## 13230 https://udn.com/news/story/7331/4488979 符合 1 221
## 13231 https://udn.com/news/story/7331/4488979 第一 1 221
## 13232 https://udn.com/news/story/7331/4488979 第一艘 1 221
## 13233 https://udn.com/news/story/7331/4488979 統合 1 221
## 13234 https://udn.com/news/story/7331/4488979 統計 1 221
## 13235 https://udn.com/news/story/7331/4488979 這是 1 221
## 13236 https://udn.com/news/story/7331/4488979 部署 1 221
## 13237 https://udn.com/news/story/7331/4488979 圍堵 1 221
## 13238 https://udn.com/news/story/7331/4488979 報導 1 221
## 13239 https://udn.com/news/story/7331/4488979 掌握 1 221
## 13240 https://udn.com/news/story/7331/4488979 提升 1 221
## 13241 https://udn.com/news/story/7331/4488979 最新 1 221
## 13242 https://udn.com/news/story/7331/4488979 發布 1 221
## 13243 https://udn.com/news/story/7331/4488979 發現 1 221
## 13244 https://udn.com/news/story/7331/4488979 超過 1 221
## 13245 https://udn.com/news/story/7331/4488979 開展 1 221
## 13246 https://udn.com/news/story/7331/4488979 微博 1 221
## 13247 https://udn.com/news/story/7331/4488979 感染 1 221
## 13248 https://udn.com/news/story/7331/4488979 新聞 1 221
## 13249 https://udn.com/news/story/7331/4488979 新增 1 221
## 13250 https://udn.com/news/story/7331/4488979 群聚 1 221
## 13251 https://udn.com/news/story/7331/4488979 號及 1 221
## 13252 https://udn.com/news/story/7331/4488979 號等 1 221
## 13253 https://udn.com/news/story/7331/4488979 號等六艦 1 221
## 13254 https://udn.com/news/story/7331/4488979 補給艦 1 221
## 13255 https://udn.com/news/story/7331/4488979 資料 1 221
## 13256 https://udn.com/news/story/7331/4488979 跨區 1 221
## 13257 https://udn.com/news/story/7331/4488979 雷根 1 221
## 13258 https://udn.com/news/story/7331/4488979 電子 1 221
## 13259 https://udn.com/news/story/7331/4488979 電偵機 1 221
## 13260 https://udn.com/news/story/7331/4488979 圖解 1 221
## 13261 https://udn.com/news/story/7331/4488979 幕僚 1 221
## 13262 https://udn.com/news/story/7331/4488979 演訓 1 221
## 13263 https://udn.com/news/story/7331/4488979 監部 1 221
## 13264 https://udn.com/news/story/7331/4488979 綜合 1 221
## 13265 https://udn.com/news/story/7331/4488979 遠處 1 221
## 13266 https://udn.com/news/story/7331/4488979 數逾 1 221
## 13267 https://udn.com/news/story/7331/4488979 確診 1 221
## 13268 https://udn.com/news/story/7331/4488979 靠岸 1 221
## 13269 https://udn.com/news/story/7331/4488979 戰鬥 1 221
## 13270 https://udn.com/news/story/7331/4488979 據稱 1 221
## 13271 https://udn.com/news/story/7331/4488979 整理 1 221
## 13272 https://udn.com/news/story/7331/4488979 機動 1 221
## 13273 https://udn.com/news/story/7331/4488979 鎖國 1 221
## 13274 https://udn.com/news/story/7331/4488979 爆發 1 221
## 13275 https://udn.com/news/story/7331/4488979 羅斯福 1 221
## 13276 https://udn.com/news/story/7331/4488979 關注 1 221
## 13277 https://udn.com/news/story/7331/4488979 關係 1 221
## 13278 https://udn.com/news/story/7331/4488979 關島 1 221
## 13279 https://udn.com/news/story/7331/4488979 類似 1 221
## 13280 https://udn.com/news/story/7331/4488979 驅逐艦 1 221
## 13281 https://udn.com/news/story/7331/4488979 體系 1 221
## 13282 https://udn.com/news/story/7331/4488979 觀察 1 221
## 13283 https://udn.com/news/story/7331/4503537 一波 1 190
## 13284 https://udn.com/news/story/7331/4503537 土耳其 1 190
## 13285 https://udn.com/news/story/7331/4503537 大小 1 190
## 13286 https://udn.com/news/story/7331/4503537 大部份 1 190
## 13287 https://udn.com/news/story/7331/4503537 大陸 1 190
## 13288 https://udn.com/news/story/7331/4503537 不斷 1 190
## 13289 https://udn.com/news/story/7331/4503537 中共 1 190
## 13290 https://udn.com/news/story/7331/4503537 中沙 1 190
## 13291 https://udn.com/news/story/7331/4503537 中建 1 190
## 13292 https://udn.com/news/story/7331/4503537 中華民國政府 1 190
## 13293 https://udn.com/news/story/7331/4503537 之前 1 190
## 13294 https://udn.com/news/story/7331/4503537 之間 1 190
## 13295 https://udn.com/news/story/7331/4503537 今年 1 190
## 13296 https://udn.com/news/story/7331/4503537 日本 1 190
## 13297 https://udn.com/news/story/7331/4503537 包括 1 190
## 13298 https://udn.com/news/story/7331/4503537 台列嶼 1 190
## 13299 https://udn.com/news/story/7331/4503537 台灣 1 190
## 13300 https://udn.com/news/story/7331/4503537 本土 1 190
## 13301 https://udn.com/news/story/7331/4503537 正式 1 190
## 13302 https://udn.com/news/story/7331/4503537 永暑礁 1 190
## 13303 https://udn.com/news/story/7331/4503537 永興島 1 190
## 13304 https://udn.com/news/story/7331/4503537 申請 1 190
## 13305 https://udn.com/news/story/7331/4503537 先前 1 190
## 13306 https://udn.com/news/story/7331/4503537 先是 1 190
## 13307 https://udn.com/news/story/7331/4503537 全球 1 190
## 13308 https://udn.com/news/story/7331/4503537 名義 1 190
## 13309 https://udn.com/news/story/7331/4503537 在此之前 1 190
## 13310 https://udn.com/news/story/7331/4503537 地級 1 190
## 13311 https://udn.com/news/story/7331/4503537 地理 1 190
## 13312 https://udn.com/news/story/7331/4503537 行使主權 1 190
## 13313 https://udn.com/news/story/7331/4503537 行業 1 190
## 13314 https://udn.com/news/story/7331/4503537 但絕 1 190
## 13315 https://udn.com/news/story/7331/4503537 含中沙 1 190
## 13316 https://udn.com/news/story/7331/4503537 我國 1 190
## 13317 https://udn.com/news/story/7331/4503537 抗疫 1 190
## 13318 https://udn.com/news/story/7331/4503537 更位 1 190
## 13319 https://udn.com/news/story/7331/4503537 更新 1 190
## 13320 https://udn.com/news/story/7331/4503537 使用 1 190
## 13321 https://udn.com/news/story/7331/4503537 例在 1 190
## 13322 https://udn.com/news/story/7331/4503537 委員會 1 190
## 13323 https://udn.com/news/story/7331/4503537 官網 1 190
## 13324 https://udn.com/news/story/7331/4503537 所在位置 1 190
## 13325 https://udn.com/news/story/7331/4503537 沿用 1 190
## 13326 https://udn.com/news/story/7331/4503537 近來 1 190
## 13327 https://udn.com/news/story/7331/4503537 南海諸島 1 190
## 13328 https://udn.com/news/story/7331/4503537 建政 1 190
## 13329 https://udn.com/news/story/7331/4503537 持續 1 190
## 13330 https://udn.com/news/story/7331/4503537 政權機構 1 190
## 13331 https://udn.com/news/story/7331/4503537 是繼 1 190
## 13332 https://udn.com/news/story/7331/4503537 疫情 1 190
## 13333 https://udn.com/news/story/7331/4503537 相同 1 190
## 13334 https://udn.com/news/story/7331/4503537 島嶼 1 190
## 13335 https://udn.com/news/story/7331/4503537 峽谷 1 190
## 13336 https://udn.com/news/story/7331/4503537 恐將 1 190
## 13337 https://udn.com/news/story/7331/4503537 海南省 1 190
## 13338 https://udn.com/news/story/7331/4503537 病例 1 190
## 13339 https://udn.com/news/story/7331/4503537 區政府 1 190
## 13340 https://udn.com/news/story/7331/4503537 問題 1 190
## 13341 https://udn.com/news/story/7331/4503537 基本 1 190
## 13342 https://udn.com/news/story/7331/4503537 將三 1 190
## 13343 https://udn.com/news/story/7331/4503537 專題 1 190
## 13344 https://udn.com/news/story/7331/4503537 累積 1 190
## 13345 https://udn.com/news/story/7331/4503537 被視 1 190
## 13346 https://udn.com/news/story/7331/4503537 設在 1 190
## 13347 https://udn.com/news/story/7331/4503537 設置 1 190
## 13348 https://udn.com/news/story/7331/4503537 部分 1 190
## 13349 https://udn.com/news/story/7331/4503537 部份 1 190
## 13350 https://udn.com/news/story/7331/4503537 報導 1 190
## 13351 https://udn.com/news/story/7331/4503537 提供 1 190
## 13352 https://udn.com/news/story/7331/4503537 敦睦 1 190
## 13353 https://udn.com/news/story/7331/4503537 發生 1 190
## 13354 https://udn.com/news/story/7331/4503537 象徵性 1 190
## 13355 https://udn.com/news/story/7331/4503537 超過 1 190
## 13356 https://udn.com/news/story/7331/4503537 越南 1 190
## 13357 https://udn.com/news/story/7331/4503537 進一步 1 190
## 13358 https://udn.com/news/story/7331/4503537 新冠肺炎 1 190
## 13359 https://udn.com/news/story/7331/4503537 新增 1 190
## 13360 https://udn.com/news/story/7331/4503537 經緯度 1 190
## 13361 https://udn.com/news/story/7331/4503537 萬人染疫 1 190
## 13362 https://udn.com/news/story/7331/4503537 補助 1 190
## 13363 https://udn.com/news/story/7331/4503537 劃設 1 190
## 13364 https://udn.com/news/story/7331/4503537 實體 1 190
## 13365 https://udn.com/news/story/7331/4503537 對照 1 190
## 13366 https://udn.com/news/story/7331/4503537 稱為 1 190
## 13367 https://udn.com/news/story/7331/4503537 增設 1 190
## 13368 https://udn.com/news/story/7331/4503537 摩擦 1 190
## 13369 https://udn.com/news/story/7331/4503537 標準 1 190
## 13370 https://udn.com/news/story/7331/4503537 整理 1 190
## 13371 https://udn.com/news/story/7331/4503537 縣級 1 190
## 13372 https://udn.com/news/story/7331/4503537 礁岩 1 190
## 13373 https://udn.com/news/story/7331/4503537 聲索 1 190
## 13374 https://udn.com/news/story/7331/4503537 隱沒 1 190
## 13375 https://udn.com/news/story/7331/4503537 繼在 1 190
## 13376 https://udn.com/news/story/7331/4503537 艦隊 1 190
## 13377 https://udn.com/news/story/7331/4530327 一個月 1 218
## 13378 https://udn.com/news/story/7331/4530327 人心 1 218
## 13379 https://udn.com/news/story/7331/4530327 力所能及 1 218
## 13380 https://udn.com/news/story/7331/4530327 上來 1 218
## 13381 https://udn.com/news/story/7331/4530327 大使 1 218
## 13382 https://udn.com/news/story/7331/4530327 工作 1 218
## 13383 https://udn.com/news/story/7331/4530327 干擾 1 218
## 13384 https://udn.com/news/story/7331/4530327 才能 1 218
## 13385 https://udn.com/news/story/7331/4530327 中方 1 218
## 13386 https://udn.com/news/story/7331/4530327 之力 1 218
## 13387 https://udn.com/news/story/7331/4530327 之機 1 218
## 13388 https://udn.com/news/story/7331/4530327 今日 1 218
## 13389 https://udn.com/news/story/7331/4530327 內向 1 218
## 13390 https://udn.com/news/story/7331/4530327 公共衛生 1 218
## 13391 https://udn.com/news/story/7331/4530327 公眾號 1 218
## 13392 https://udn.com/news/story/7331/4530327 公然 1 218
## 13393 https://udn.com/news/story/7331/4530327 公道 1 218
## 13394 https://udn.com/news/story/7331/4530327 公論 1 218
## 13395 https://udn.com/news/story/7331/4530327 分裂 1 218
## 13396 https://udn.com/news/story/7331/4530327 反觀 1 218
## 13397 https://udn.com/news/story/7331/4530327 引述 1 218
## 13398 https://udn.com/news/story/7331/4530327 日本 1 218
## 13399 https://udn.com/news/story/7331/4530327 主權 1 218
## 13400 https://udn.com/news/story/7331/4530327 以一己 1 218
## 13401 https://udn.com/news/story/7331/4530327 以來 1 218
## 13402 https://udn.com/news/story/7331/4530327 充滿 1 218
## 13403 https://udn.com/news/story/7331/4530327 台灣 1 218
## 13404 https://udn.com/news/story/7331/4530327 本國 1 218
## 13405 https://udn.com/news/story/7331/4530327 立場 1 218
## 13406 https://udn.com/news/story/7331/4530327 休戚 1 218
## 13407 https://udn.com/news/story/7331/4530327 共同體 1 218
## 13408 https://udn.com/news/story/7331/4530327 共渡難關 1 218
## 13409 https://udn.com/news/story/7331/4530327 印尼 1 218
## 13410 https://udn.com/news/story/7331/4530327 各方 1 218
## 13411 https://udn.com/news/story/7331/4530327 各國 1 218
## 13412 https://udn.com/news/story/7331/4530327 向世衛 1 218
## 13413 https://udn.com/news/story/7331/4530327 安全 1 218
## 13414 https://udn.com/news/story/7331/4530327 早有 1 218
## 13415 https://udn.com/news/story/7331/4530327 汙名 1 218
## 13416 https://udn.com/news/story/7331/4530327 自在 1 218
## 13417 https://udn.com/news/story/7331/4530327 行動 1 218
## 13418 https://udn.com/news/story/7331/4530327 利用 1 218
## 13419 https://udn.com/news/story/7331/4530327 利益 1 218
## 13420 https://udn.com/news/story/7331/4530327 努力 1 218
## 13421 https://udn.com/news/story/7331/4530327 完全 1 218
## 13422 https://udn.com/news/story/7331/4530327 攻擊 1 218
## 13423 https://udn.com/news/story/7331/4530327 言論 1 218
## 13424 https://udn.com/news/story/7331/4530327 防疫 1 218
## 13425 https://udn.com/news/story/7331/4530327 事情 1 218
## 13426 https://udn.com/news/story/7331/4530327 事實勝於雄辯 1 218
## 13427 https://udn.com/news/story/7331/4530327 使館 1 218
## 13428 https://udn.com/news/story/7331/4530327 協商 1 218
## 13429 https://udn.com/news/story/7331/4530327 和世衛 1 218
## 13430 https://udn.com/news/story/7331/4530327 奉勸 1 218
## 13431 https://udn.com/news/story/7331/4530327 始終 1 218
## 13432 https://udn.com/news/story/7331/4530327 放在 1 218
## 13433 https://udn.com/news/story/7331/4530327 秉持 1 218
## 13434 https://udn.com/news/story/7331/4530327 近日 1 218
## 13435 https://udn.com/news/story/7331/4530327 威脅 1 218
## 13436 https://udn.com/news/story/7331/4530327 指出 1 218
## 13437 https://udn.com/news/story/7331/4530327 挑釁 1 218
## 13438 https://udn.com/news/story/7331/4530327 政治化 1 218
## 13439 https://udn.com/news/story/7331/4530327 相關 1 218
## 13440 https://udn.com/news/story/7331/4530327 致力於 1 218
## 13441 https://udn.com/news/story/7331/4530327 面對 1 218
## 13442 https://udn.com/news/story/7331/4530327 徒勞 1 218
## 13443 https://udn.com/news/story/7331/4530327 消息 1 218
## 13444 https://udn.com/news/story/7331/4530327 病毒 1 218
## 13445 https://udn.com/news/story/7331/4530327 破萬 1 218
## 13446 https://udn.com/news/story/7331/4530327 破壞 1 218
## 13447 https://udn.com/news/story/7331/4530327 偏見 1 218
## 13448 https://udn.com/news/story/7331/4530327 做好 1 218
## 13449 https://udn.com/news/story/7331/4530327 做法 1 218
## 13450 https://udn.com/news/story/7331/4530327 問題 1 218
## 13451 https://udn.com/news/story/7331/4530327 國家主權 1 218
## 13452 https://udn.com/news/story/7331/4530327 堅定不移 1 218
## 13453 https://udn.com/news/story/7331/4530327 將延 1 218
## 13454 https://udn.com/news/story/7331/4530327 專題 1 218
## 13455 https://udn.com/news/story/7331/4530327 採取 1 218
## 13456 https://udn.com/news/story/7331/4530327 推卸 1 218
## 13457 https://udn.com/news/story/7331/4530327 理念 1 218
## 13458 https://udn.com/news/story/7331/4530327 累計 1 218
## 13459 https://udn.com/news/story/7331/4530327 責任 1 218
## 13460 https://udn.com/news/story/7331/4530327 陸方 1 218
## 13461 https://udn.com/news/story/7331/4530327 陸媒 1 218
## 13462 https://udn.com/news/story/7331/4530327 惡意 1 218
## 13463 https://udn.com/news/story/7331/4530327 提供支援 1 218
## 13464 https://udn.com/news/story/7331/4530327 無國界 1 218
## 13465 https://udn.com/news/story/7331/4530327 發生 1 218
## 13466 https://udn.com/news/story/7331/4530327 發言人 1 218
## 13467 https://udn.com/news/story/7331/4530327 微信 1 218
## 13468 https://udn.com/news/story/7331/4530327 損害 1 218
## 13469 https://udn.com/news/story/7331/4530327 新聞 1 218
## 13470 https://udn.com/news/story/7331/4530327 會費 1 218
## 13471 https://udn.com/news/story/7331/4530327 義務 1 218
## 13472 https://udn.com/news/story/7331/4530327 解除 1 218
## 13473 https://udn.com/news/story/7331/4530327 違背 1 218
## 13474 https://udn.com/news/story/7331/4530327 隔離 1 218
## 13475 https://udn.com/news/story/7331/4530327 團結 1 218
## 13476 https://udn.com/news/story/7331/4530327 對話 1 218
## 13477 https://udn.com/news/story/7331/4530327 管轄權 1 218
## 13478 https://udn.com/news/story/7331/4530327 精力 1 218
## 13479 https://udn.com/news/story/7331/4530327 維持 1 218
## 13480 https://udn.com/news/story/7331/4530327 緊急狀態 1 218
## 13481 https://udn.com/news/story/7331/4530327 製造 1 218
## 13482 https://udn.com/news/story/7331/4530327 需要 1 218
## 13483 https://udn.com/news/story/7331/4530327 澎湃 1 218
## 13484 https://udn.com/news/story/7331/4530327 熱衷於 1 218
## 13485 https://udn.com/news/story/7331/4530327 範圍 1 218
## 13486 https://udn.com/news/story/7331/4530327 積極開展 1 218
## 13487 https://udn.com/news/story/7331/4530327 幫助 1 218
## 13488 https://udn.com/news/story/7331/4530327 應盡 1 218
## 13489 https://udn.com/news/story/7331/4530327 謊言 1 218
## 13490 https://udn.com/news/story/7331/4530327 轉嫁 1 218
## 13491 https://udn.com/news/story/7331/4530327 繳納 1 218
## 13492 https://udn.com/news/story/7331/4530327 關注 1 218
## 13493 https://udn.com/news/story/7331/4530327 嚴重 1 218
## 13494 https://udn.com/news/story/7331/4530327 嚴重危害 1 218
## 13495 https://udn.com/news/story/7331/4530327 攜手 1 218
## 13496 https://udn.com/news/story/7331/4530327 權益 1 218
## 13497 https://udn.com/news/story/7331/4530327 攪局 1 218
## 13498 https://udn.com/news/story/7331/4557178 一代 1 148
## 13499 https://udn.com/news/story/7331/4557178 人解 1 148
## 13500 https://udn.com/news/story/7331/4557178 入列 1 148
## 13501 https://udn.com/news/story/7331/4557178 十分 1 148
## 13502 https://udn.com/news/story/7331/4557178 大規模 1 148
## 13503 https://udn.com/news/story/7331/4557178 山東 1 148
## 13504 https://udn.com/news/story/7331/4557178 之間 1 148
## 13505 https://udn.com/news/story/7331/4557178 之舉 1 148
## 13506 https://udn.com/news/story/7331/4557178 巴士海峽 1 148
## 13507 https://udn.com/news/story/7331/4557178 引述 1 148
## 13508 https://udn.com/news/story/7331/4557178 日本共同社 1 148
## 13509 https://udn.com/news/story/7331/4557178 日益 1 148
## 13510 https://udn.com/news/story/7331/4557178 代表 1 148
## 13511 https://udn.com/news/story/7331/4557178 加強 1 148
## 13512 https://udn.com/news/story/7331/4557178 加劇 1 148
## 13513 https://udn.com/news/story/7331/4557178 包括 1 148
## 13514 https://udn.com/news/story/7331/4557178 去年 1 148
## 13515 https://udn.com/news/story/7331/4557178 可能 1 148
## 13516 https://udn.com/news/story/7331/4557178 布署 1 148
## 13517 https://udn.com/news/story/7331/4557178 必要性 1 148
## 13518 https://udn.com/news/story/7331/4557178 本土 1 148
## 13519 https://udn.com/news/story/7331/4557178 正在 1 148
## 13520 https://udn.com/news/story/7331/4557178 民調 1 148
## 13521 https://udn.com/news/story/7331/4557178 目標 1 148
## 13522 https://udn.com/news/story/7331/4557178 印度 1 148
## 13523 https://udn.com/news/story/7331/4557178 合作 1 148
## 13524 https://udn.com/news/story/7331/4557178 年來 1 148
## 13525 https://udn.com/news/story/7331/4557178 收集 1 148
## 13526 https://udn.com/news/story/7331/4557178 有意 1 148
## 13527 https://udn.com/news/story/7331/4557178 位於 1 148
## 13528 https://udn.com/news/story/7331/4557178 位置圖 1 148
## 13529 https://udn.com/news/story/7331/4557178 決定 1 148
## 13530 https://udn.com/news/story/7331/4557178 屆時 1 148
## 13531 https://udn.com/news/story/7331/4557178 直升飛機 1 148
## 13532 https://udn.com/news/story/7331/4557178 空域 1 148
## 13533 https://udn.com/news/story/7331/4557178 附近 1 148
## 13534 https://udn.com/news/story/7331/4557178 前往 1 148
## 13535 https://udn.com/news/story/7331/4557178 前所未有 1 148
## 13536 https://udn.com/news/story/7331/4557178 南方 1 148
## 13537 https://udn.com/news/story/7331/4557178 南部 1 148
## 13538 https://udn.com/news/story/7331/4557178 活動 1 148
## 13539 https://udn.com/news/story/7331/4557178 活躍 1 148
## 13540 https://udn.com/news/story/7331/4557178 疫情 1 148
## 13541 https://udn.com/news/story/7331/4557178 看來 1 148
## 13542 https://udn.com/news/story/7331/4557178 美台 1 148
## 13543 https://udn.com/news/story/7331/4557178 美軍 1 148
## 13544 https://udn.com/news/story/7331/4557178 計劃 1 148
## 13545 https://udn.com/news/story/7331/4557178 負責 1 148
## 13546 https://udn.com/news/story/7331/4557178 軍事 1 148
## 13547 https://udn.com/news/story/7331/4557178 重要 1 148
## 13548 https://udn.com/news/story/7331/4557178 飛行 1 148
## 13549 https://udn.com/news/story/7331/4557178 飛來 1 148
## 13550 https://udn.com/news/story/7331/4557178 首艘 1 148
## 13551 https://udn.com/news/story/7331/4557178 氣墊船 1 148
## 13552 https://udn.com/news/story/7331/4557178 海洋 1 148
## 13553 https://udn.com/news/story/7331/4557178 消息人士 1 148
## 13554 https://udn.com/news/story/7331/4557178 動用 1 148
## 13555 https://udn.com/news/story/7331/4557178 動作 1 148
## 13556 https://udn.com/news/story/7331/4557178 動態 1 148
## 13557 https://udn.com/news/story/7331/4557178 基地 1 148
## 13558 https://udn.com/news/story/7331/4557178 專題 1 148
## 13559 https://udn.com/news/story/7331/4557178 規模 1 148
## 13560 https://udn.com/news/story/7331/4557178 設定 1 148
## 13561 https://udn.com/news/story/7331/4557178 這是 1 148
## 13562 https://udn.com/news/story/7331/4557178 陸戰隊 1 148
## 13563 https://udn.com/news/story/7331/4557178 普亭 1 148
## 13564 https://udn.com/news/story/7331/4557178 無症狀 1 148
## 13565 https://udn.com/news/story/7331/4557178 焦躁 1 148
## 13566 https://udn.com/news/story/7331/4557178 登陸艦 1 148
## 13567 https://udn.com/news/story/7331/4557178 跌到 1 148
## 13568 https://udn.com/news/story/7331/4557178 進入 1 148
## 13569 https://udn.com/news/story/7331/4557178 感到 1 148
## 13570 https://udn.com/news/story/7331/4557178 新低 1 148
## 13571 https://udn.com/news/story/7331/4557178 新冠肺炎 1 148
## 13572 https://udn.com/news/story/7331/4557178 解放軍隊 1 148
## 13573 https://udn.com/news/story/7331/4557178 路線 1 148
## 13574 https://udn.com/news/story/7331/4557178 隔離 1 148
## 13575 https://udn.com/news/story/7331/4557178 電偵機 1 148
## 13576 https://udn.com/news/story/7331/4557178 實施 1 148
## 13577 https://udn.com/news/story/7331/4557178 滿月 1 148
## 13578 https://udn.com/news/story/7331/4557178 管理處 1 148
## 13579 https://udn.com/news/story/7331/4557178 緊張 1 148
## 13580 https://udn.com/news/story/7331/4557178 增強 1 148
## 13581 https://udn.com/news/story/7331/4557178 確診 1 148
## 13582 https://udn.com/news/story/7331/4557178 導致 1 148
## 13583 https://udn.com/news/story/7331/4557178 戰區 1 148
## 13584 https://udn.com/news/story/7331/4557178 戰略地位 1 148
## 13585 https://udn.com/news/story/7331/4557178 篩檢 1 148
## 13586 https://udn.com/news/story/7331/4557178 頻頻 1 148
## 13587 https://udn.com/news/story/7331/4557178 頻繁 1 148
## 13588 https://udn.com/news/story/7331/4557178 環礁 1 148
## 13589 https://udn.com/news/story/7331/4557178 舉行 1 148
## 13590 https://udn.com/news/story/7331/4557178 擴大 1 148
## 13591 https://udn.com/news/story/7331/4557178 關係 1 148
## 13592 https://udn.com/news/story/7331/4605008 一直 1 268
## 13593 https://udn.com/news/story/7331/4605008 土地開墾 1 268
## 13594 https://udn.com/news/story/7331/4605008 大校 1 268
## 13595 https://udn.com/news/story/7331/4605008 大得多 1 268
## 13596 https://udn.com/news/story/7331/4605008 大量 1 268
## 13597 https://udn.com/news/story/7331/4605008 不是 1 268
## 13598 https://udn.com/news/story/7331/4605008 不願 1 268
## 13599 https://udn.com/news/story/7331/4605008 中美 1 268
## 13600 https://udn.com/news/story/7331/4605008 之後 1 268
## 13601 https://udn.com/news/story/7331/4605008 今天 1 268
## 13602 https://udn.com/news/story/7331/4605008 仍然 1 268
## 13603 https://udn.com/news/story/7331/4605008 公布 1 268
## 13604 https://udn.com/news/story/7331/4605008 公共政策 1 268
## 13605 https://udn.com/news/story/7331/4605008 支持 1 268
## 13606 https://udn.com/news/story/7331/4605008 主權 1 268
## 13607 https://udn.com/news/story/7331/4605008 代價 1 268
## 13608 https://udn.com/news/story/7331/4605008 加緊 1 268
## 13609 https://udn.com/news/story/7331/4605008 包括 1 268
## 13610 https://udn.com/news/story/7331/4605008 另一名 1 268
## 13611 https://udn.com/news/story/7331/4605008 外交 1 268
## 13612 https://udn.com/news/story/7331/4605008 巨大 1 268
## 13613 https://udn.com/news/story/7331/4605008 正式 1 268
## 13614 https://udn.com/news/story/7331/4605008 目前 1 268
## 13615 https://udn.com/news/story/7331/4605008 在此之前 1 268
## 13616 https://udn.com/news/story/7331/4605008 成本 1 268
## 13617 https://udn.com/news/story/7331/4605008 考量 1 268
## 13618 https://udn.com/news/story/7331/4605008 自信 1 268
## 13619 https://udn.com/news/story/7331/4605008 至今 1 268
## 13620 https://udn.com/news/story/7331/4605008 巡邏 1 268
## 13621 https://udn.com/news/story/7331/4605008 技術 1 268
## 13622 https://udn.com/news/story/7331/4605008 李光耀 1 268
## 13623 https://udn.com/news/story/7331/4605008 沒有 1 268
## 13624 https://udn.com/news/story/7331/4605008 受訪 1 268
## 13625 https://udn.com/news/story/7331/4605008 坦言 1 268
## 13626 https://udn.com/news/story/7331/4605008 尚未 1 268
## 13627 https://udn.com/news/story/7331/4605008 則對 1 268
## 13628 https://udn.com/news/story/7331/4605008 則稱 1 268
## 13629 https://udn.com/news/story/7331/4605008 建立 1 268
## 13630 https://udn.com/news/story/7331/4605008 很大 1 268
## 13631 https://udn.com/news/story/7331/4605008 指出 1 268
## 13632 https://udn.com/news/story/7331/4605008 挑釁 1 268
## 13633 https://udn.com/news/story/7331/4605008 政治 1 268
## 13634 https://udn.com/news/story/7331/4605008 研究所 1 268
## 13635 https://udn.com/news/story/7331/4605008 軍方 1 268
## 13636 https://udn.com/news/story/7331/4605008 軍事學術 1 268
## 13637 https://udn.com/news/story/7331/4605008 香港 1 268
## 13638 https://udn.com/news/story/7331/4605008 時則 1 268
## 13639 https://udn.com/news/story/7331/4605008 追蹤 1 268
## 13640 https://udn.com/news/story/7331/4605008 退役 1 268
## 13641 https://udn.com/news/story/7331/4605008 高昂 1 268
## 13642 https://udn.com/news/story/7331/4605008 高級 1 268
## 13643 https://udn.com/news/story/7331/4605008 做出 1 268
## 13644 https://udn.com/news/story/7331/4605008 國防部 1 268
## 13645 https://udn.com/news/story/7331/4605008 將是 1 268
## 13646 https://udn.com/news/story/7331/4605008 專家 1 268
## 13647 https://udn.com/news/story/7331/4605008 被迫 1 268
## 13648 https://udn.com/news/story/7331/4605008 規模 1 268
## 13649 https://udn.com/news/story/7331/4605008 訪問 1 268
## 13650 https://udn.com/news/story/7331/4605008 設置 1 268
## 13651 https://udn.com/news/story/7331/4605008 許多 1 268
## 13652 https://udn.com/news/story/7331/4605008 透過 1 268
## 13653 https://udn.com/news/story/7331/4605008 這名 1 268
## 13654 https://udn.com/news/story/7331/4605008 部分 1 268
## 13655 https://udn.com/news/story/7331/4605008 報導 1 268
## 13656 https://udn.com/news/story/7331/4605008 幾倍 1 268
## 13657 https://udn.com/news/story/7331/4605008 提早 1 268
## 13658 https://udn.com/news/story/7331/4605008 援引 1 268
## 13659 https://udn.com/news/story/7331/4605008 無法 1 268
## 13660 https://udn.com/news/story/7331/4605008 程度 1 268
## 13661 https://udn.com/news/story/7331/4605008 菲律賓 1 268
## 13662 https://udn.com/news/story/7331/4605008 著手 1 268
## 13663 https://udn.com/news/story/7331/4605008 進行 1 268
## 13664 https://udn.com/news/story/7331/4605008 意識 1 268
## 13665 https://udn.com/news/story/7331/4605008 損害 1 268
## 13666 https://udn.com/news/story/7331/4605008 新加坡國立大學 1 268
## 13667 https://udn.com/news/story/7331/4605008 經濟 1 268
## 13668 https://udn.com/news/story/7331/4605008 資源 1 268
## 13669 https://udn.com/news/story/7331/4605008 過去 1 268
## 13670 https://udn.com/news/story/7331/4605008 劃定 1 268
## 13671 https://udn.com/news/story/7331/4605008 實際 1 268
## 13672 https://udn.com/news/story/7331/4605008 說法 1 268
## 13673 https://udn.com/news/story/7331/4605008 需要 1 268
## 13674 https://udn.com/news/story/7331/4605008 適當 1 268
## 13675 https://udn.com/news/story/7331/4605008 學院 1 268
## 13676 https://udn.com/news/story/7331/4605008 戰鬥機 1 268
## 13677 https://udn.com/news/story/7331/4605008 整備 1 268
## 13678 https://udn.com/news/story/7331/4605008 默許 1 268
## 13679 https://udn.com/news/story/7331/4605008 檢測 1 268
## 13680 https://udn.com/news/story/7331/4605008 聲明 1 268
## 13681 https://udn.com/news/story/7331/4605008 雖有 1 268
## 13682 https://udn.com/news/story/7331/4605008 嚴重 1 268
## 13683 https://udn.com/news/story/7331/4681864 三大 1 231
## 13684 https://udn.com/news/story/7331/4681864 大規模 1 231
## 13685 https://udn.com/news/story/7331/4681864 已經 1 231
## 13686 https://udn.com/news/story/7331/4681864 才將 1 231
## 13687 https://udn.com/news/story/7331/4681864 不易 1 231
## 13688 https://udn.com/news/story/7331/4681864 中心 1 231
## 13689 https://udn.com/news/story/7331/4681864 今年 1 231
## 13690 https://udn.com/news/story/7331/4681864 公里 1 231
## 13691 https://udn.com/news/story/7331/4681864 支持 1 231
## 13692 https://udn.com/news/story/7331/4681864 日起 1 231
## 13693 https://udn.com/news/story/7331/4681864 水面艦艇 1 231
## 13694 https://udn.com/news/story/7331/4681864 水域 1 231
## 13695 https://udn.com/news/story/7331/4681864 主編 1 231
## 13696 https://udn.com/news/story/7331/4681864 以來 1 231
## 13697 https://udn.com/news/story/7331/4681864 加上 1 231
## 13698 https://udn.com/news/story/7331/4681864 外圍 1 231
## 13699 https://udn.com/news/story/7331/4681864 尼米茲 1 231
## 13700 https://udn.com/news/story/7331/4681864 打擊 1 231
## 13701 https://udn.com/news/story/7331/4681864 正在 1 231
## 13702 https://udn.com/news/story/7331/4681864 目的 1 231
## 13703 https://udn.com/news/story/7331/4681864 任務 1 231
## 13704 https://udn.com/news/story/7331/4681864 共同 1 231
## 13705 https://udn.com/news/story/7331/4681864 再次 1 231
## 13706 https://udn.com/news/story/7331/4681864 印太 1 231
## 13707 https://udn.com/news/story/7331/4681864 多年 1 231
## 13708 https://udn.com/news/story/7331/4681864 肌肉 1 231
## 13709 https://udn.com/news/story/7331/4681864 自由 1 231
## 13710 https://udn.com/news/story/7331/4681864 西太 1 231
## 13711 https://udn.com/news/story/7331/4681864 完全 1 231
## 13712 https://udn.com/news/story/7331/4681864 巡航 1 231
## 13713 https://udn.com/news/story/7331/4681864 使用 1 231
## 13714 https://udn.com/news/story/7331/4681864 依舊會 1 231
## 13715 https://udn.com/news/story/7331/4681864 制導武器 1 231
## 13716 https://udn.com/news/story/7331/4681864 刻意 1 231
## 13717 https://udn.com/news/story/7331/4681864 官媒 1 231
## 13718 https://udn.com/news/story/7331/4681864 明顯 1 231
## 13719 https://udn.com/news/story/7331/4681864 東海 1 231
## 13720 https://udn.com/news/story/7331/4681864 知識 1 231
## 13721 https://udn.com/news/story/7331/4681864 空中 1 231
## 13722 https://udn.com/news/story/7331/4681864 空軍基地 1 231
## 13723 https://udn.com/news/story/7331/4681864 威脅 1 231
## 13724 https://udn.com/news/story/7331/4681864 宣布 1 231
## 13725 https://udn.com/news/story/7331/4681864 持續 1 231
## 13726 https://udn.com/news/story/7331/4681864 指標 1 231
## 13727 https://udn.com/news/story/7331/4681864 洲際飛彈 1 231
## 13728 https://udn.com/news/story/7331/4681864 炸藥 1 231
## 13729 https://udn.com/news/story/7331/4681864 軍事 1 231
## 13730 https://udn.com/news/story/7331/4681864 軍演 1 231
## 13731 https://udn.com/news/story/7331/4681864 重大 1 231
## 13732 https://udn.com/news/story/7331/4681864 重新部署 1 231
## 13733 https://udn.com/news/story/7331/4681864 飛行 1 231
## 13734 https://udn.com/news/story/7331/4681864 首次 1 231
## 13735 https://udn.com/news/story/7331/4681864 展開 1 231
## 13736 https://udn.com/news/story/7331/4681864 核載 1 231
## 13737 https://udn.com/news/story/7331/4681864 核潛艇 1 231
## 13738 https://udn.com/news/story/7331/4681864 海軍 1 231
## 13739 https://udn.com/news/story/7331/4681864 海權 1 231
## 13740 https://udn.com/news/story/7331/4681864 能力 1 231
## 13741 https://udn.com/news/story/7331/4681864 航母 1 231
## 13742 https://udn.com/news/story/7331/4681864 航空 1 231
## 13743 https://udn.com/news/story/7331/4681864 航空母艦 1 231
## 13744 https://udn.com/news/story/7331/4681864 配備 1 231
## 13745 https://udn.com/news/story/7331/4681864 骨幹 1 231
## 13746 https://udn.com/news/story/7331/4681864 動態 1 231
## 13747 https://udn.com/news/story/7331/4681864 執行 1 231
## 13748 https://udn.com/news/story/7331/4681864 將會 1 231
## 13749 https://udn.com/news/story/7331/4681864 專家 1 231
## 13750 https://udn.com/news/story/7331/4681864 掛載 1 231
## 13751 https://udn.com/news/story/7331/4681864 現在 1 231
## 13752 https://udn.com/news/story/7331/4681864 被視 1 231
## 13753 https://udn.com/news/story/7331/4681864 連續 1 231
## 13754 https://udn.com/news/story/7331/4681864 單獨 1 231
## 13755 https://udn.com/news/story/7331/4681864 最多 1 231
## 13756 https://udn.com/news/story/7331/4681864 期刊 1 231
## 13757 https://udn.com/news/story/7331/4681864 發言人 1 231
## 13758 https://udn.com/news/story/7331/4681864 發射 1 231
## 13759 https://udn.com/news/story/7331/4681864 視為 1 231
## 13760 https://udn.com/news/story/7331/4681864 超過 1 231
## 13761 https://udn.com/news/story/7331/4681864 開放 1 231
## 13762 https://udn.com/news/story/7331/4681864 意圖 1 231
## 13763 https://udn.com/news/story/7331/4681864 概念 1 231
## 13764 https://udn.com/news/story/7331/4681864 群在 1 231
## 13765 https://udn.com/news/story/7331/4681864 資料 1 231
## 13766 https://udn.com/news/story/7331/4681864 運用 1 231
## 13767 https://udn.com/news/story/7331/4681864 雷根 1 231
## 13768 https://udn.com/news/story/7331/4681864 預計 1 231
## 13769 https://udn.com/news/story/7331/4681864 實施 1 231
## 13770 https://udn.com/news/story/7331/4681864 對此 1 231
## 13771 https://udn.com/news/story/7331/4681864 精確 1 231
## 13772 https://udn.com/news/story/7331/4681864 緊張不安 1 231
## 13773 https://udn.com/news/story/7331/4681864 遠距離 1 231
## 13774 https://udn.com/news/story/7331/4681864 潛在 1 231
## 13775 https://udn.com/news/story/7331/4681864 擁有 1 231
## 13776 https://udn.com/news/story/7331/4681864 操演 1 231
## 13777 https://udn.com/news/story/7331/4681864 整個 1 231
## 13778 https://udn.com/news/story/7331/4681864 機型 1 231
## 13779 https://udn.com/news/story/7331/4681864 歷史 1 231
## 13780 https://udn.com/news/story/7331/4681864 優勢 1 231
## 13781 https://udn.com/news/story/7331/4681864 環球時報 1 231
## 13782 https://udn.com/news/story/7331/4681864 雙艦 1 231
## 13783 https://udn.com/news/story/7331/4681864 囊括 1 231
## 13784 https://udn.com/news/story/7331/4681864 變得 1 231
## 13785 https://udn.com/news/story/7331/4681864 顯示 1 231
## 13786 https://udn.com/news/story/7331/4681864 體現 1 231
## 13787 https://udn.com/news/story/7331/4697199 一目了然 1 274
## 13788 https://udn.com/news/story/7331/4697199 一連 1 274
## 13789 https://udn.com/news/story/7331/4697199 大國 1 274
## 13790 https://udn.com/news/story/7331/4697199 大規模 1 274
## 13791 https://udn.com/news/story/7331/4697199 不了 1 274
## 13792 https://udn.com/news/story/7331/4697199 不力 1 274
## 13793 https://udn.com/news/story/7331/4697199 不信邪 1 274
## 13794 https://udn.com/news/story/7331/4697199 不遠千里 1 274
## 13795 https://udn.com/news/story/7331/4697199 中共 1 274
## 13796 https://udn.com/news/story/7331/4697199 今天 1 274
## 13797 https://udn.com/news/story/7331/4697199 日起 1 274
## 13798 https://udn.com/news/story/7331/4697199 刊文 1 274
## 13799 https://udn.com/news/story/7331/4697199 刊登 1 274
## 13800 https://udn.com/news/story/7331/4697199 包括 1 274
## 13801 https://udn.com/news/story/7331/4697199 尼米茲 1 274
## 13802 https://udn.com/news/story/7331/4697199 打擊 1 274
## 13803 https://udn.com/news/story/7331/4697199 正當 1 274
## 13804 https://udn.com/news/story/7331/4697199 目標 1 274
## 13805 https://udn.com/news/story/7331/4697199 交換 1 274
## 13806 https://udn.com/news/story/7331/4697199 共同 1 274
## 13807 https://udn.com/news/story/7331/4697199 在內 1 274
## 13808 https://udn.com/news/story/7331/4697199 妄圖 1 274
## 13809 https://udn.com/news/story/7331/4697199 存在 1 274
## 13810 https://udn.com/news/story/7331/4697199 安排 1 274
## 13811 https://udn.com/news/story/7331/4697199 行為 1 274
## 13812 https://udn.com/news/story/7331/4697199 冷戰 1 274
## 13813 https://udn.com/news/story/7331/4697199 吞下 1 274
## 13814 https://udn.com/news/story/7331/4697199 言論 1 274
## 13815 https://udn.com/news/story/7331/4697199 防疫 1 274
## 13816 https://udn.com/news/story/7331/4697199 防衛 1 274
## 13817 https://udn.com/news/story/7331/4697199 並指 1 274
## 13818 https://udn.com/news/story/7331/4697199 例行 1 274
## 13819 https://udn.com/news/story/7331/4697199 兩隊 1 274
## 13820 https://udn.com/news/story/7331/4697199 到底 1 274
## 13821 https://udn.com/news/story/7331/4697199 協商 1 274
## 13822 https://udn.com/news/story/7331/4697199 周邊 1 274
## 13823 https://udn.com/news/story/7331/4697199 和平解決 1 274
## 13824 https://udn.com/news/story/7331/4697199 固有 1 274
## 13825 https://udn.com/news/story/7331/4697199 屈從 1 274
## 13826 https://udn.com/news/story/7331/4697199 念念不忘 1 274
## 13827 https://udn.com/news/story/7331/4697199 所謂 1 274
## 13828 https://udn.com/news/story/7331/4697199 東南亞 1 274
## 13829 https://udn.com/news/story/7331/4697199 武力 1 274
## 13830 https://udn.com/news/story/7331/4697199 表示 1 274
## 13831 https://udn.com/news/story/7331/4697199 附近 1 274
## 13832 https://udn.com/news/story/7331/4697199 冒險 1 274
## 13833 https://udn.com/news/story/7331/4697199 冠狀病毒 1 274
## 13834 https://udn.com/news/story/7331/4697199 南海諸島 1 274
## 13835 https://udn.com/news/story/7331/4697199 威懾 1 274
## 13836 https://udn.com/news/story/7331/4697199 思維 1 274
## 13837 https://udn.com/news/story/7331/4697199 挑撥 1 274
## 13838 https://udn.com/news/story/7331/4697199 派出 1 274
## 13839 https://udn.com/news/story/7331/4697199 疫情 1 274
## 13840 https://udn.com/news/story/7331/4697199 相關 1 274
## 13841 https://udn.com/news/story/7331/4697199 美在 1 274
## 13842 https://udn.com/news/story/7331/4697199 致力 1 274
## 13843 https://udn.com/news/story/7331/4697199 苦果 1 274
## 13844 https://udn.com/news/story/7331/4697199 軍機 1 274
## 13845 https://udn.com/news/story/7331/4697199 家門口 1 274
## 13846 https://udn.com/news/story/7331/4697199 展開 1 274
## 13847 https://udn.com/news/story/7331/4697199 捍衛 1 274
## 13848 https://udn.com/news/story/7331/4697199 核心 1 274
## 13849 https://udn.com/news/story/7331/4697199 海軍 1 274
## 13850 https://udn.com/news/story/7331/4697199 特定 1 274
## 13851 https://udn.com/news/story/7331/4697199 疾病 1 274
## 13852 https://udn.com/news/story/7331/4697199 真面目 1 274
## 13853 https://udn.com/news/story/7331/4697199 秩序 1 274
## 13854 https://udn.com/news/story/7331/4697199 脅迫 1 274
## 13855 https://udn.com/news/story/7331/4697199 起降 1 274
## 13856 https://udn.com/news/story/7331/4697199 針對 1 274
## 13857 https://udn.com/news/story/7331/4697199 高層 1 274
## 13858 https://udn.com/news/story/7331/4697199 停止 1 274
## 13859 https://udn.com/news/story/7331/4697199 國防部 1 274
## 13860 https://udn.com/news/story/7331/4697199 國協 1 274
## 13861 https://udn.com/news/story/7331/4697199 國強 1 274
## 13862 https://udn.com/news/story/7331/4697199 國際法 1 274
## 13863 https://udn.com/news/story/7331/4697199 國慶日 1 274
## 13864 https://udn.com/news/story/7331/4697199 域外 1 274
## 13865 https://udn.com/news/story/7331/4697199 堅決 1 274
## 13866 https://udn.com/news/story/7331/4697199 將採 1 274
## 13867 https://udn.com/news/story/7331/4697199 得利 1 274
## 13868 https://udn.com/news/story/7331/4697199 從中 1 274
## 13869 https://udn.com/news/story/7331/4697199 情況 1 274
## 13870 https://udn.com/news/story/7331/4697199 採取 1 274
## 13871 https://udn.com/news/story/7331/4697199 掩蓋 1 274
## 13872 https://udn.com/news/story/7331/4697199 第七 1 274
## 13873 https://udn.com/news/story/7331/4697199 規則 1 274
## 13874 https://udn.com/news/story/7331/4697199 透過 1 274
## 13875 https://udn.com/news/story/7331/4697199 尊重 1 274
## 13876 https://udn.com/news/story/7331/4697199 無可爭辯 1 274
## 13877 https://udn.com/news/story/7331/4697199 無理 1 274
## 13878 https://udn.com/news/story/7331/4697199 發言人 1 274
## 13879 https://udn.com/news/story/7331/4697199 發展 1 274
## 13880 https://udn.com/news/story/7331/4697199 絕不 1 274
## 13881 https://udn.com/news/story/7331/4697199 惹事 1 274
## 13882 https://udn.com/news/story/7331/4697199 損害 1 274
## 13883 https://udn.com/news/story/7331/4697199 新冠肺炎 1 274
## 13884 https://udn.com/news/story/7331/4697199 當天 1 274
## 13885 https://udn.com/news/story/7331/4697199 當事國 1 274
## 13886 https://udn.com/news/story/7331/4697199 雷根 1 274
## 13887 https://udn.com/news/story/7331/4697199 實施 1 274
## 13888 https://udn.com/news/story/7331/4697199 對抗 1 274
## 13889 https://udn.com/news/story/7331/4697199 領土 1 274
## 13890 https://udn.com/news/story/7331/4697199 履行 1 274
## 13891 https://udn.com/news/story/7331/4697199 確立 1 274
## 13892 https://udn.com/news/story/7331/4697199 範圍 1 274
## 13893 https://udn.com/news/story/7331/4697199 蔓延 1 274
## 13894 https://udn.com/news/story/7331/4697199 衝擊 1 274
## 13895 https://udn.com/news/story/7331/4697199 談判 1 274
## 13896 https://udn.com/news/story/7331/4697199 隸屬 1 274
## 13897 https://udn.com/news/story/7331/4697199 職責 1 274
## 13898 https://udn.com/news/story/7331/4697199 雙重標準 1 274
## 13899 https://udn.com/news/story/7331/4697199 題為 1 274
## 13900 https://udn.com/news/story/7331/4697199 關係 1 274
## 13901 https://udn.com/news/story/7331/4697199 競爭 1 274
## 13902 https://udn.com/news/story/7331/4697199 繼續 1 274
## 13903 https://udn.com/news/story/7331/4697199 艦隊 1 274
## 13904 https://udn.com/news/story/7331/4699962 一貫 1 129
## 13905 https://udn.com/news/story/7331/4699962 干擾 1 129
## 13906 https://udn.com/news/story/7331/4699962 不持 1 129
## 13907 https://udn.com/news/story/7331/4699962 不是 1 129
## 13908 https://udn.com/news/story/7331/4699962 不要 1 129
## 13909 https://udn.com/news/story/7331/4699962 切實 1 129
## 13910 https://udn.com/news/story/7331/4699962 方式 1 129
## 13911 https://udn.com/news/story/7331/4699962 主權 1 129
## 13912 https://udn.com/news/story/7331/4699962 北京 1 129
## 13913 https://udn.com/news/story/7331/4699962 合法 1 129
## 13914 https://udn.com/news/story/7331/4699962 回應 1 129
## 13915 https://udn.com/news/story/7331/4699962 完全 1 129
## 13916 https://udn.com/news/story/7331/4699962 形勢 1 129
## 13917 https://udn.com/news/story/7331/4699962 使用 1 129
## 13918 https://udn.com/news/story/7331/4699962 取自 1 129
## 13919 https://udn.com/news/story/7331/4699962 官網 1 129
## 13920 https://udn.com/news/story/7331/4699962 承諾 1 129
## 13921 https://udn.com/news/story/7331/4699962 明確 1 129
## 13922 https://udn.com/news/story/7331/4699962 東協 1 129
## 13923 https://udn.com/news/story/7331/4699962 爭議 1 129
## 13924 https://udn.com/news/story/7331/4699962 非法 1 129
## 13925 https://udn.com/news/story/7331/4699962 客觀事實 1 129
## 13926 https://udn.com/news/story/7331/4699962 恪守 1 129
## 13927 https://udn.com/news/story/7331/4699962 持續 1 129
## 13928 https://udn.com/news/story/7331/4699962 挑撥 1 129
## 13929 https://udn.com/news/story/7331/4699962 歪曲 1 129
## 13930 https://udn.com/news/story/7331/4699962 美國 1 129
## 13931 https://udn.com/news/story/7331/4699962 美國使館 1 129
## 13932 https://udn.com/news/story/7331/4699962 破壞者 1 129
## 13933 https://udn.com/news/story/7331/4699962 針對 1 129
## 13934 https://udn.com/news/story/7331/4699962 國務卿 1 129
## 13935 https://udn.com/news/story/7331/4699962 國際法 1 129
## 13936 https://udn.com/news/story/7331/4699962 控制 1 129
## 13937 https://udn.com/news/story/7331/4699962 尊重 1 129
## 13938 https://udn.com/news/story/7331/4699962 插手 1 129
## 13939 https://udn.com/news/story/7331/4699962 敦促 1 129
## 13940 https://udn.com/news/story/7331/4699962 渲染 1 129
## 13941 https://udn.com/news/story/7331/4699962 無視 1 129
## 13942 https://udn.com/news/story/7331/4699962 發布 1 129
## 13943 https://udn.com/news/story/7331/4699962 發展 1 129
## 13944 https://udn.com/news/story/7331/4699962 進行 1 129
## 13945 https://udn.com/news/story/7331/4699962 當事方 1 129
## 13946 https://udn.com/news/story/7331/4699962 當前 1 129
## 13947 https://udn.com/news/story/7331/4699962 肆意 1 129
## 13948 https://udn.com/news/story/7331/4699962 資源 1 129
## 13949 https://udn.com/news/story/7331/4699962 網頁 1 129
## 13950 https://udn.com/news/story/7331/4699962 緊張局勢 1 129
## 13951 https://udn.com/news/story/7331/4699962 領土 1 129
## 13952 https://udn.com/news/story/7331/4699962 頻頻 1 129
## 13953 https://udn.com/news/story/7331/4699962 總體 1 129
## 13954 https://udn.com/news/story/7331/4699962 關係 1 129
## 13955 https://udn.com/news/story/7331/4699962 龐培 1 129
## 13956 https://udn.com/news/story/7331/4699962 霸凌 1 129
## 13957 https://udn.com/news/story/7331/4699962 權利 1 129
## 13958 https://udn.com/news/story/7331/4699962 攪局 1 129
## 13959 https://udn.com/news/story/7331/4702018 一直 1 181
## 13960 https://udn.com/news/story/7331/4702018 一致 1 181
## 13961 https://udn.com/news/story/7331/4702018 大規模 1 181
## 13962 https://udn.com/news/story/7331/4702018 大部分 1 181
## 13963 https://udn.com/news/story/7331/4702018 不合 1 181
## 13964 https://udn.com/news/story/7331/4702018 公約 1 181
## 13965 https://udn.com/news/story/7331/4702018 方式 1 181
## 13966 https://udn.com/news/story/7331/4702018 充分 1 181
## 13967 https://udn.com/news/story/7331/4702018 加入 1 181
## 13968 https://udn.com/news/story/7331/4702018 目的 1 181
## 13969 https://udn.com/news/story/7331/4702018 立場 1 181
## 13970 https://udn.com/news/story/7331/4702018 仲裁 1 181
## 13971 https://udn.com/news/story/7331/4702018 先進 1 181
## 13972 https://udn.com/news/story/7331/4702018 合則 1 181
## 13973 https://udn.com/news/story/7331/4702018 回應 1 181
## 13974 https://udn.com/news/story/7331/4702018 年來 1 181
## 13975 https://udn.com/news/story/7331/4702018 行徑 1 181
## 13976 https://udn.com/news/story/7331/4702018 利用 1 181
## 13977 https://udn.com/news/story/7331/4702018 沒有 1 181
## 13978 https://udn.com/news/story/7331/4702018 例行 1 181
## 13979 https://udn.com/news/story/7331/4702018 依據 1 181
## 13980 https://udn.com/news/story/7331/4702018 協商 1 181
## 13981 https://udn.com/news/story/7331/4702018 周邊國家 1 181
## 13982 https://udn.com/news/story/7331/4702018 和平解決 1 181
## 13983 https://udn.com/news/story/7331/4702018 拒絕 1 181
## 13984 https://udn.com/news/story/7331/4702018 服務 1 181
## 13985 https://udn.com/news/story/7331/4702018 法律依據 1 181
## 13986 https://udn.com/news/story/7331/4702018 法理 1 181
## 13987 https://udn.com/news/story/7331/4702018 炒作 1 181
## 13988 https://udn.com/news/story/7331/4702018 爭議 1 181
## 13989 https://udn.com/news/story/7331/4702018 直接 1 181
## 13990 https://udn.com/news/story/7331/4702018 非法 1 181
## 13991 https://udn.com/news/story/7331/4702018 則棄 1 181
## 13992 https://udn.com/news/story/7331/4702018 帝國 1 181
## 13993 https://udn.com/news/story/7331/4702018 建立 1 181
## 13994 https://udn.com/news/story/7331/4702018 恫嚇 1 181
## 13995 https://udn.com/news/story/7331/4702018 指責 1 181
## 13996 https://udn.com/news/story/7331/4702018 挑撥 1 181
## 13997 https://udn.com/news/story/7331/4702018 政治 1 181
## 13998 https://udn.com/news/story/7331/4702018 派遣 1 181
## 13999 https://udn.com/news/story/7331/4702018 美國大使館 1 181
## 14000 https://udn.com/news/story/7331/4702018 美國國務院 1 181
## 14001 https://udn.com/news/story/7331/4702018 軍事 1 181
## 14002 https://udn.com/news/story/7331/4702018 軍機 1 181
## 14003 https://udn.com/news/story/7331/4702018 軍艦 1 181
## 14004 https://udn.com/news/story/7331/4702018 案來 1 181
## 14005 https://udn.com/news/story/7331/4702018 海上 1 181
## 14006 https://udn.com/news/story/7331/4702018 海洋 1 181
## 14007 https://udn.com/news/story/7331/4702018 記者會 1 181
## 14008 https://udn.com/news/story/7331/4702018 退群 1 181
## 14009 https://udn.com/news/story/7331/4702018 做法 1 181
## 14010 https://udn.com/news/story/7331/4702018 停止 1 181
## 14011 https://udn.com/news/story/7331/4702018 問題 1 181
## 14012 https://udn.com/news/story/7331/4702018 國家 1 181
## 14013 https://udn.com/news/story/7331/4702018 國務卿 1 181
## 14014 https://udn.com/news/story/7331/4702018 國際法 1 181
## 14015 https://udn.com/news/story/7331/4702018 堅持 1 181
## 14016 https://udn.com/news/story/7331/4702018 強烈不滿 1 181
## 14017 https://udn.com/news/story/7331/4702018 強硬 1 181
## 14018 https://udn.com/news/story/7331/4702018 強權 1 181
## 14019 https://udn.com/news/story/7331/4702018 從來不 1 181
## 14020 https://udn.com/news/story/7331/4702018 接受 1 181
## 14021 https://udn.com/news/story/7331/4702018 推行 1 181
## 14022 https://udn.com/news/story/7331/4702018 透過 1 181
## 14023 https://udn.com/news/story/7331/4702018 連貫 1 181
## 14024 https://udn.com/news/story/7331/4702018 野心 1 181
## 14025 https://udn.com/news/story/7331/4702018 報導 1 181
## 14026 https://udn.com/news/story/7331/4702018 提供 1 181
## 14027 https://udn.com/news/story/7331/4702018 敦促 1 181
## 14028 https://udn.com/news/story/7331/4702018 渲染 1 181
## 14029 https://udn.com/news/story/7331/4702018 無理 1 181
## 14030 https://udn.com/news/story/7331/4702018 絕不 1 181
## 14031 https://udn.com/news/story/7331/4702018 進行 1 181
## 14032 https://udn.com/news/story/7331/4702018 毀約 1 181
## 14033 https://udn.com/news/story/7331/4702018 當日 1 181
## 14034 https://udn.com/news/story/7331/4702018 當地 1 181
## 14035 https://udn.com/news/story/7331/4702018 當事方 1 181
## 14036 https://udn.com/news/story/7331/4702018 資源 1 181
## 14037 https://udn.com/news/story/7331/4702018 路透 1 181
## 14038 https://udn.com/news/story/7331/4702018 對此 1 181
## 14039 https://udn.com/news/story/7331/4702018 對待 1 181
## 14040 https://udn.com/news/story/7331/4702018 維護 1 181
## 14041 https://udn.com/news/story/7331/4702018 緊張局勢 1 181
## 14042 https://udn.com/news/story/7331/4702018 製造事端 1 181
## 14043 https://udn.com/news/story/7331/4702018 談判 1 181
## 14044 https://udn.com/news/story/7331/4702018 歷史 1 181
## 14045 https://udn.com/news/story/7331/4702018 謀求 1 181
## 14046 https://udn.com/news/story/7331/4702018 錯誤 1 181
## 14047 https://udn.com/news/story/7331/4702018 頻頻 1 181
## 14048 https://udn.com/news/story/7331/4702018 頻繁 1 181
## 14049 https://udn.com/news/story/7331/4702018 濫用 1 181
## 14050 https://udn.com/news/story/7331/4702018 聯合國 1 181
## 14051 https://udn.com/news/story/7331/4702018 關係 1 181
## 14052 https://udn.com/news/story/7331/4702018 龐培 1 181
## 14053 https://udn.com/news/story/7331/4702018 霸權 1 181
## 14054 https://udn.com/news/story/7331/4702018 權益 1 181
## 14055 https://udn.com/news/story/7331/4702018 變得 1 181
## 14056 https://udn.com/news/story/7331/4702018 邏輯 1 181
## 14057 https://udn.com/news/story/7331/4703971 一度 1 200
## 14058 https://udn.com/news/story/7331/4703971 一款 1 200
## 14059 https://udn.com/news/story/7331/4703971 一體 1 200
## 14060 https://udn.com/news/story/7331/4703971 三天 1 200
## 14061 https://udn.com/news/story/7331/4703971 上空 1 200
## 14062 https://udn.com/news/story/7331/4703971 不同 1 200
## 14063 https://udn.com/news/story/7331/4703971 中樞神經 1 200
## 14064 https://udn.com/news/story/7331/4703971 公里 1 200
## 14065 https://udn.com/news/story/7331/4703971 分類 1 200
## 14066 https://udn.com/news/story/7331/4703971 反潛巡邏機 1 200
## 14067 https://udn.com/news/story/7331/4703971 巴士海峽 1 200
## 14068 https://udn.com/news/story/7331/4703971 日前 1 200
## 14069 https://udn.com/news/story/7331/4703971 主權 1 200
## 14070 https://udn.com/news/story/7331/4703971 可能 1 200
## 14071 https://udn.com/news/story/7331/4703971 台灣 1 200
## 14072 https://udn.com/news/story/7331/4703971 外對 1 200
## 14073 https://udn.com/news/story/7331/4703971 平台 1 200
## 14074 https://udn.com/news/story/7331/4703971 本月 1 200
## 14075 https://udn.com/news/story/7331/4703971 先進 1 200
## 14076 https://udn.com/news/story/7331/4703971 全稱 1 200
## 14077 https://udn.com/news/story/7331/4703971 再次 1 200
## 14078 https://udn.com/news/story/7331/4703971 名目繁多 1 200
## 14079 https://udn.com/news/story/7331/4703971 在於 1 200
## 14080 https://udn.com/news/story/7331/4703971 安全 1 200
## 14081 https://udn.com/news/story/7331/4703971 此番 1 200
## 14082 https://udn.com/news/story/7331/4703971 自由行動 1 200
## 14083 https://udn.com/news/story/7331/4703971 行為 1 200
## 14084 https://udn.com/news/story/7331/4703971 位置 1 200
## 14085 https://udn.com/news/story/7331/4703971 作戰 1 200
## 14086 https://udn.com/news/story/7331/4703971 局勢穩定 1 200
## 14087 https://udn.com/news/story/7331/4703971 巡航 1 200
## 14088 https://udn.com/news/story/7331/4703971 攻擊 1 200
## 14089 https://udn.com/news/story/7331/4703971 良好 1 200
## 14090 https://udn.com/news/story/7331/4703971 防區 1 200
## 14091 https://udn.com/news/story/7331/4703971 並朝著 1 200
## 14092 https://udn.com/news/story/7331/4703971 事實上 1 200
## 14093 https://udn.com/news/story/7331/4703971 取自 1 200
## 14094 https://udn.com/news/story/7331/4703971 和平 1 200
## 14095 https://udn.com/news/story/7331/4703971 所謂 1 200
## 14096 https://udn.com/news/story/7331/4703971 東向西 1 200
## 14097 https://udn.com/news/story/7331/4703971 武力 1 200
## 14098 https://udn.com/news/story/7331/4703971 沿岸國 1 200
## 14099 https://udn.com/news/story/7331/4703971 沿海 1 200
## 14100 https://udn.com/news/story/7331/4703971 空域 1 200
## 14101 https://udn.com/news/story/7331/4703971 表示 1 200
## 14102 https://udn.com/news/story/7331/4703971 長年累月 1 200
## 14103 https://udn.com/news/story/7331/4703971 侵犯 1 200
## 14104 https://udn.com/news/story/7331/4703971 前來 1 200
## 14105 https://udn.com/news/story/7331/4703971 南部 1 200
## 14106 https://udn.com/news/story/7331/4703971 後方 1 200
## 14107 https://udn.com/news/story/7331/4703971 指出 1 200
## 14108 https://udn.com/news/story/7331/4703971 指揮所 1 200
## 14109 https://udn.com/news/story/7331/4703971 活動 1 200
## 14110 https://udn.com/news/story/7331/4703971 炫耀 1 200
## 14111 https://udn.com/news/story/7331/4703971 研製 1 200
## 14112 https://udn.com/news/story/7331/4703971 計劃 1 200
## 14113 https://udn.com/news/story/7331/4703971 重點 1 200
## 14114 https://udn.com/news/story/7331/4703971 飛至 1 200
## 14115 https://udn.com/news/story/7331/4703971 根本原因 1 200
## 14116 https://udn.com/news/story/7331/4703971 海里 1 200
## 14117 https://udn.com/news/story/7331/4703971 海岸 1 200
## 14118 https://udn.com/news/story/7331/4703971 海軍 1 200
## 14119 https://udn.com/news/story/7331/4703971 破壞 1 200
## 14120 https://udn.com/news/story/7331/4703971 秩序 1 200
## 14121 https://udn.com/news/story/7331/4703971 航行 1 200
## 14122 https://udn.com/news/story/7331/4703971 國家 1 200
## 14123 https://udn.com/news/story/7331/4703971 專家 1 200
## 14124 https://udn.com/news/story/7331/4703971 張軍社 1 200
## 14125 https://udn.com/news/story/7331/4703971 探測 1 200
## 14126 https://udn.com/news/story/7331/4703971 現身 1 200
## 14127 https://udn.com/news/story/7331/4703971 第二次 1 200
## 14128 https://udn.com/news/story/7331/4703971 途徑 1 200
## 14129 https://udn.com/news/story/7331/4703971 這才 1 200
## 14130 https://udn.com/news/story/7331/4703971 這是 1 200
## 14131 https://udn.com/news/story/7331/4703971 堪稱 1 200
## 14132 https://udn.com/news/story/7331/4703971 發布 1 200
## 14133 https://udn.com/news/story/7331/4703971 距離 1 200
## 14134 https://udn.com/news/story/7331/4703971 開展 1 200
## 14135 https://udn.com/news/story/7331/4703971 傳遞 1 200
## 14136 https://udn.com/news/story/7331/4703971 意在 1 200
## 14137 https://udn.com/news/story/7331/4703971 感知 1 200
## 14138 https://udn.com/news/story/7331/4703971 搜索 1 200
## 14139 https://udn.com/news/story/7331/4703971 搜集 1 200
## 14140 https://udn.com/news/story/7331/4703971 搭載 1 200
## 14141 https://udn.com/news/story/7331/4703971 當天 1 200
## 14142 https://udn.com/news/story/7331/4703971 當日 1 200
## 14143 https://udn.com/news/story/7331/4703971 路線 1 200
## 14144 https://udn.com/news/story/7331/4703971 電磁 1 200
## 14145 https://udn.com/news/story/7331/4703971 實施 1 200
## 14146 https://udn.com/news/story/7331/4703971 實時 1 200
## 14147 https://udn.com/news/story/7331/4703971 對手 1 200
## 14148 https://udn.com/news/story/7331/4703971 態勢 1 200
## 14149 https://udn.com/news/story/7331/4703971 演習 1 200
## 14150 https://udn.com/news/story/7331/4703971 管理系統 1 200
## 14151 https://udn.com/news/story/7331/4703971 與此 1 200
## 14152 https://udn.com/news/story/7331/4703971 影響 1 200
## 14153 https://udn.com/news/story/7331/4703971 戰略 1 200
## 14154 https://udn.com/news/story/7331/4703971 戰場 1 200
## 14155 https://udn.com/news/story/7331/4703971 戰機 1 200
## 14156 https://udn.com/news/story/7331/4703971 機型 1 200
## 14157 https://udn.com/news/story/7331/4703971 機載 1 200
## 14158 https://udn.com/news/story/7331/4703971 隨後 1 200
## 14159 https://udn.com/news/story/7331/4703971 頻繁 1 200
## 14160 https://udn.com/news/story/7331/4703971 壓制 1 200
## 14161 https://udn.com/news/story/7331/4703971 闖入 1 200
## 14162 https://udn.com/news/story/7331/4703971 穩定 1 200
## 14163 https://udn.com/news/story/7331/4703971 識別 1 200
## 14164 https://udn.com/news/story/7331/4703971 艦機 1 200
## 14165 https://udn.com/news/story/7331/4704552 上不持 1 216
## 14166 https://udn.com/news/story/7331/4704552 下午 1 216
## 14167 https://udn.com/news/story/7331/4704552 大量 1 216
## 14168 https://udn.com/news/story/7331/4704552 干擾 1 216
## 14169 https://udn.com/news/story/7331/4704552 不免 1 216
## 14170 https://udn.com/news/story/7331/4704552 不是 1 216
## 14171 https://udn.com/news/story/7331/4704552 不要 1 216
## 14172 https://udn.com/news/story/7331/4704552 不亂 1 216
## 14173 https://udn.com/news/story/7331/4704552 不斷 1 216
## 14174 https://udn.com/news/story/7331/4704552 中心 1 216
## 14175 https://udn.com/news/story/7331/4704552 中方 1 216
## 14176 https://udn.com/news/story/7331/4704552 中美 1 216
## 14177 https://udn.com/news/story/7331/4704552 今天 1 216
## 14178 https://udn.com/news/story/7331/4704552 公然 1 216
## 14179 https://udn.com/news/story/7331/4704552 友好關係 1 216
## 14180 https://udn.com/news/story/7331/4704552 手段 1 216
## 14181 https://udn.com/news/story/7331/4704552 日受 1 216
## 14182 https://udn.com/news/story/7331/4704552 世人 1 216
## 14183 https://udn.com/news/story/7331/4704552 只會 1 216
## 14184 https://udn.com/news/story/7331/4704552 可悲 1 216
## 14185 https://udn.com/news/story/7331/4704552 外海 1 216
## 14186 https://udn.com/news/story/7331/4704552 立場 1 216
## 14187 https://udn.com/news/story/7331/4704552 交鋒 1 216
## 14188 https://udn.com/news/story/7331/4704552 企業 1 216
## 14189 https://udn.com/news/story/7331/4704552 先進 1 216
## 14190 https://udn.com/news/story/7331/4704552 共同 1 216
## 14191 https://udn.com/news/story/7331/4704552 共同開發 1 216
## 14192 https://udn.com/news/story/7331/4704552 合法權益 1 216
## 14193 https://udn.com/news/story/7331/4704552 回答 1 216
## 14194 https://udn.com/news/story/7331/4704552 回應 1 216
## 14195 https://udn.com/news/story/7331/4704552 安全 1 216
## 14196 https://udn.com/news/story/7331/4704552 行為 1 216
## 14197 https://udn.com/news/story/7331/4704552 作用 1 216
## 14198 https://udn.com/news/story/7331/4704552 助理 1 216
## 14199 https://udn.com/news/story/7331/4704552 努力 1 216
## 14200 https://udn.com/news/story/7331/4704552 告訴 1 216
## 14201 https://udn.com/news/story/7331/4704552 更加 1 216
## 14202 https://udn.com/news/story/7331/4704552 言論 1 216
## 14203 https://udn.com/news/story/7331/4704552 事務 1 216
## 14204 https://udn.com/news/story/7331/4704552 亞太 1 216
## 14205 https://udn.com/news/story/7331/4704552 例行 1 216
## 14206 https://udn.com/news/story/7331/4704552 兩國 1 216
## 14207 https://udn.com/news/story/7331/4704552 承諾 1 216
## 14208 https://udn.com/news/story/7331/4704552 東協 1 216
## 14209 https://udn.com/news/story/7331/4704552 武力 1 216
## 14210 https://udn.com/news/story/7331/4704552 非法 1 216
## 14211 https://udn.com/news/story/7331/4704552 宣布 1 216
## 14212 https://udn.com/news/story/7331/4704552 建設性 1 216
## 14213 https://udn.com/news/story/7331/4704552 挑撥離間 1 216
## 14214 https://udn.com/news/story/7331/4704552 挑釁 1 216
## 14215 https://udn.com/news/story/7331/4704552 炫耀 1 216
## 14216 https://udn.com/news/story/7331/4704552 為題 1 216
## 14217 https://udn.com/news/story/7331/4704552 相關 1 216
## 14218 https://udn.com/news/story/7331/4704552 看到 1 216
## 14219 https://udn.com/news/story/7331/4704552 研究 1 216
## 14220 https://udn.com/news/story/7331/4704552 美東 1 216
## 14221 https://udn.com/news/story/7331/4704552 美國國務院 1 216
## 14222 https://udn.com/news/story/7331/4704552 若想 1 216
## 14223 https://udn.com/news/story/7331/4704552 時間 1 216
## 14224 https://udn.com/news/story/7331/4704552 根本 1 216
## 14225 https://udn.com/news/story/7331/4704552 留給 1 216
## 14226 https://udn.com/news/story/7331/4704552 記者會 1 216
## 14227 https://udn.com/news/story/7331/4704552 做法 1 216
## 14228 https://udn.com/news/story/7331/4704552 動輒 1 216
## 14229 https://udn.com/news/story/7331/4704552 唯一 1 216
## 14230 https://udn.com/news/story/7331/4704552 唯恐 1 216
## 14231 https://udn.com/news/story/7331/4704552 國有企業 1 216
## 14232 https://udn.com/news/story/7331/4704552 國際 1 216
## 14233 https://udn.com/news/story/7331/4704552 這是 1 216
## 14234 https://udn.com/news/story/7331/4704552 這類 1 216
## 14235 https://udn.com/news/story/7331/4704552 媒體 1 216
## 14236 https://udn.com/news/story/7331/4704552 提到 1 216
## 14237 https://udn.com/news/story/7331/4704552 提問 1 216
## 14238 https://udn.com/news/story/7331/4704552 智庫 1 216
## 14239 https://udn.com/news/story/7331/4704552 發言人 1 216
## 14240 https://udn.com/news/story/7331/4704552 發表 1 216
## 14241 https://udn.com/news/story/7331/4704552 發表聲明 1 216
## 14242 https://udn.com/news/story/7331/4704552 發揮 1 216
## 14243 https://udn.com/news/story/7331/4704552 華府 1 216
## 14244 https://udn.com/news/story/7331/4704552 虛偽 1 216
## 14245 https://udn.com/news/story/7331/4704552 超級大國 1 216
## 14246 https://udn.com/news/story/7331/4704552 越走越遠 1 216
## 14247 https://udn.com/news/story/7331/4704552 週邊 1 216
## 14248 https://udn.com/news/story/7331/4704552 開發 1 216
## 14249 https://udn.com/news/story/7331/4704552 極力 1 216
## 14250 https://udn.com/news/story/7331/4704552 資源 1 216
## 14251 https://udn.com/news/story/7331/4704552 道路 1 216
## 14252 https://udn.com/news/story/7331/4704552 違背 1 216
## 14253 https://udn.com/news/story/7331/4704552 圖謀 1 216
## 14254 https://udn.com/news/story/7331/4704552 演講時 1 216
## 14255 https://udn.com/news/story/7331/4704552 認定 1 216
## 14256 https://udn.com/news/story/7331/4704552 暴露 1 216
## 14257 https://udn.com/news/story/7331/4704552 標籤 1 216
## 14258 https://udn.com/news/story/7331/4704552 線上 1 216
## 14259 https://udn.com/news/story/7331/4704552 蓬佩奧 1 216
## 14260 https://udn.com/news/story/7331/4704552 戰略 1 216
## 14261 https://udn.com/news/story/7331/4704552 樹欲靜而風不止 1 216
## 14262 https://udn.com/news/story/7331/4704552 機艦 1 216
## 14263 https://udn.com/news/story/7331/4704552 激烈 1 216
## 14264 https://udn.com/news/story/7331/4704552 選項 1 216
## 14265 https://udn.com/news/story/7331/4704552 錯誤 1 216
## 14266 https://udn.com/news/story/7331/4704552 聲稱 1 216
## 14267 https://udn.com/news/story/7331/4704552 舉行 1 216
## 14268 https://udn.com/news/story/7331/4704552 邀請 1 216
## 14269 https://udn.com/news/story/7331/4704552 關係 1 216
## 14270 https://udn.com/news/story/7331/4704552 繼續 1 216
## 14271 https://udn.com/news/story/7331/4704552 耀眼 1 216
## 14272 https://udn.com/news/story/7331/4704552 覺得 1 216
## 14273 https://udn.com/news/story/7331/4704552 霸道 1 216
## 14274 https://udn.com/news/story/7331/4713477 一定 1 266
## 14275 https://udn.com/news/story/7331/4713477 一張 1 266
## 14276 https://udn.com/news/story/7331/4713477 上空 1 266
## 14277 https://udn.com/news/story/7331/4713477 不久 1 266
## 14278 https://udn.com/news/story/7331/4713477 不同 1 266
## 14279 https://udn.com/news/story/7331/4713477 中部 1 266
## 14280 https://udn.com/news/story/7331/4713477 之後 1 266
## 14281 https://udn.com/news/story/7331/4713477 反對 1 266
## 14282 https://udn.com/news/story/7331/4713477 日才剛 1 266
## 14283 https://udn.com/news/story/7331/4713477 水平 1 266
## 14284 https://udn.com/news/story/7331/4713477 主要 1 266
## 14285 https://udn.com/news/story/7331/4713477 主張 1 266
## 14286 https://udn.com/news/story/7331/4713477 令殲 1 266
## 14287 https://udn.com/news/story/7331/4713477 以來 1 266
## 14288 https://udn.com/news/story/7331/4713477 出發 1 266
## 14289 https://udn.com/news/story/7331/4713477 刊出 1 266
## 14290 https://udn.com/news/story/7331/4713477 半徑 1 266
## 14291 https://udn.com/news/story/7331/4713477 另據 1 266
## 14292 https://udn.com/news/story/7331/4713477 可能 1 266
## 14293 https://udn.com/news/story/7331/4713477 尼米茲 1 266
## 14294 https://udn.com/news/story/7331/4713477 本土 1 266
## 14295 https://udn.com/news/story/7331/4713477 生產 1 266
## 14296 https://udn.com/news/story/7331/4713477 再度 1 266
## 14297 https://udn.com/news/story/7331/4713477 名為 1 266
## 14298 https://udn.com/news/story/7331/4713477 回應 1 266
## 14299 https://udn.com/news/story/7331/4713477 多個 1 266
## 14300 https://udn.com/news/story/7331/4713477 安德森 1 266
## 14301 https://udn.com/news/story/7331/4713477 西沙 1 266
## 14302 https://udn.com/news/story/7331/4713477 位置 1 266
## 14303 https://udn.com/news/story/7331/4713477 作出 1 266
## 14304 https://udn.com/news/story/7331/4713477 免受 1 266
## 14305 https://udn.com/news/story/7331/4713477 改良 1 266
## 14306 https://udn.com/news/story/7331/4713477 並稱 1 266
## 14307 https://udn.com/news/story/7331/4713477 兩度 1 266
## 14308 https://udn.com/news/story/7331/4713477 兩架 1 266
## 14309 https://udn.com/news/story/7331/4713477 兩國 1 266
## 14310 https://udn.com/news/story/7331/4713477 制空權 1 266
## 14311 https://udn.com/news/story/7331/4713477 取道 1 266
## 14312 https://udn.com/news/story/7331/4713477 拍島 1 266
## 14313 https://udn.com/news/story/7331/4713477 拍攝 1 266
## 14314 https://udn.com/news/story/7331/4713477 爭議 1 266
## 14315 https://udn.com/news/story/7331/4713477 直到 1 266
## 14316 https://udn.com/news/story/7331/4713477 社群 1 266
## 14317 https://udn.com/news/story/7331/4713477 空軍基地 1 266
## 14318 https://udn.com/news/story/7331/4713477 空優 1 266
## 14319 https://udn.com/news/story/7331/4713477 近日 1 266
## 14320 https://udn.com/news/story/7331/4713477 近年 1 266
## 14321 https://udn.com/news/story/7331/4713477 近來 1 266
## 14322 https://udn.com/news/story/7331/4713477 俄羅斯 1 266
## 14323 https://udn.com/news/story/7331/4713477 前往 1 266
## 14324 https://udn.com/news/story/7331/4713477 威脅 1 266
## 14325 https://udn.com/news/story/7331/4713477 宣稱 1 266
## 14326 https://udn.com/news/story/7331/4713477 建設 1 266
## 14327 https://udn.com/news/story/7331/4713477 恆溫 1 266
## 14328 https://udn.com/news/story/7331/4713477 昨天 1 266
## 14329 https://udn.com/news/story/7331/4713477 派出 1 266
## 14330 https://udn.com/news/story/7331/4713477 突防 1 266
## 14331 https://udn.com/news/story/7331/4713477 突然 1 266
## 14332 https://udn.com/news/story/7331/4713477 突發事件 1 266
## 14333 https://udn.com/news/story/7331/4713477 美國空軍 1 266
## 14334 https://udn.com/news/story/7331/4713477 軍力 1 266
## 14335 https://udn.com/news/story/7331/4713477 重返 1 266
## 14336 https://udn.com/news/story/7331/4713477 降落 1 266
## 14337 https://udn.com/news/story/7331/4713477 首次 1 266
## 14338 https://udn.com/news/story/7331/4713477 修築 1 266
## 14339 https://udn.com/news/story/7331/4713477 夏威夷 1 266
## 14340 https://udn.com/news/story/7331/4713477 海軍 1 266
## 14341 https://udn.com/news/story/7331/4713477 消息 1 266
## 14342 https://udn.com/news/story/7331/4713477 能力 1 266
## 14343 https://udn.com/news/story/7331/4713477 能夠 1 266
## 14344 https://udn.com/news/story/7331/4713477 訓練 1 266
## 14345 https://udn.com/news/story/7331/4713477 財經 1 266
## 14346 https://udn.com/news/story/7331/4713477 高溫 1 266
## 14347 https://udn.com/news/story/7331/4713477 高端 1 266
## 14348 https://udn.com/news/story/7331/4713477 停放在 1 266
## 14349 https://udn.com/news/story/7331/4713477 停機坪 1 266
## 14350 https://udn.com/news/story/7331/4713477 基地 1 266
## 14351 https://udn.com/news/story/7331/4713477 帳號 1 266
## 14352 https://udn.com/news/story/7331/4713477 情勢 1 266
## 14353 https://udn.com/news/story/7331/4713477 現身 1 266
## 14354 https://udn.com/news/story/7331/4713477 設施 1 266
## 14355 https://udn.com/news/story/7331/4713477 這是 1 266
## 14356 https://udn.com/news/story/7331/4713477 富比 1 266
## 14357 https://udn.com/news/story/7331/4713477 最受 1 266
## 14358 https://udn.com/news/story/7331/4713477 最高 1 266
## 14359 https://udn.com/news/story/7331/4713477 港媒 1 266
## 14360 https://udn.com/news/story/7331/4713477 發文 1 266
## 14361 https://udn.com/news/story/7331/4713477 發表聲明 1 266
## 14362 https://udn.com/news/story/7331/4713477 程度 1 266
## 14363 https://udn.com/news/story/7331/4713477 超音速 1 266
## 14364 https://udn.com/news/story/7331/4713477 越南 1 266
## 14365 https://udn.com/news/story/7331/4713477 進行 1 266
## 14366 https://udn.com/news/story/7331/4713477 開展 1 266
## 14367 https://udn.com/news/story/7331/4713477 填海 1 266
## 14368 https://udn.com/news/story/7331/4713477 微博 1 266
## 14369 https://udn.com/news/story/7331/4713477 意味 1 266
## 14370 https://udn.com/news/story/7331/4713477 照片 1 266
## 14371 https://udn.com/news/story/7331/4713477 當天 1 266
## 14372 https://udn.com/news/story/7331/4713477 群島 1 266
## 14373 https://udn.com/news/story/7331/4713477 號與 1 266
## 14374 https://udn.com/news/story/7331/4713477 較勁 1 266
## 14375 https://udn.com/news/story/7331/4713477 雷根 1 266
## 14376 https://udn.com/news/story/7331/4713477 奪取 1 266
## 14377 https://udn.com/news/story/7331/4713477 實現 1 266
## 14378 https://udn.com/news/story/7331/4713477 構成 1 266
## 14379 https://udn.com/news/story/7331/4713477 疑似 1 266
## 14380 https://udn.com/news/story/7331/4713477 疑為 1 266
## 14381 https://udn.com/news/story/7331/4713477 綜合 1 266
## 14382 https://udn.com/news/story/7331/4713477 網站 1 266
## 14383 https://udn.com/news/story/7331/4713477 遠程 1 266
## 14384 https://udn.com/news/story/7331/4713477 影響 1 266
## 14385 https://udn.com/news/story/7331/4713477 確保 1 266
## 14386 https://udn.com/news/story/7331/4713477 戰鬥 1 266
## 14387 https://udn.com/news/story/7331/4713477 戰鬥機 1 266
## 14388 https://udn.com/news/story/7331/4713477 整個 1 266
## 14389 https://udn.com/news/story/7331/4713477 頻頻 1 266
## 14390 https://udn.com/news/story/7331/4713477 濕度 1 266
## 14391 https://udn.com/news/story/7331/4713477 聲索 1 266
## 14392 https://udn.com/news/story/7331/4713477 舉行 1 266
## 14393 https://udn.com/news/story/7331/4713477 擴建 1 266
## 14394 https://udn.com/news/story/7331/4713477 覆蓋 1 266
## 14395 https://udn.com/news/story/7331/4713477 雜誌 1 266
## 14396 https://udn.com/news/story/7331/4713477 艦隊 1 266
## 14397 https://udn.com/news/story/7331/4713477 屬實 1 266
## 14398 https://udn.com/news/story/7331/4713477 顯示 1 266
## 14399 https://udn.com/news/story/7331/4713477 矚目 1 266
## 14400 https://udn.com/news/story/7331/4713478 人工 1 208
## 14401 https://udn.com/news/story/7331/4713478 大馬 1 208
## 14402 https://udn.com/news/story/7331/4713478 大陸 1 208
## 14403 https://udn.com/news/story/7331/4713478 大學 1 208
## 14404 https://udn.com/news/story/7331/4713478 川普 1 208
## 14405 https://udn.com/news/story/7331/4713478 工具 1 208
## 14406 https://udn.com/news/story/7331/4713478 中方 1 208
## 14407 https://udn.com/news/story/7331/4713478 中交建則 1 208
## 14408 https://udn.com/news/story/7331/4713478 中扮 1 208
## 14409 https://udn.com/news/story/7331/4713478 中時 1 208
## 14410 https://udn.com/news/story/7331/4713478 巴卡 1 208
## 14411 https://udn.com/news/story/7331/4713478 巴童 1 208
## 14412 https://udn.com/news/story/7331/4713478 引述 1 208
## 14413 https://udn.com/news/story/7331/4713478 方式 1 208
## 14414 https://udn.com/news/story/7331/4713478 月還 1 208
## 14415 https://udn.com/news/story/7331/4713478 他國 1 208
## 14416 https://udn.com/news/story/7331/4713478 充當 1 208
## 14417 https://udn.com/news/story/7331/4713478 包括 1 208
## 14418 https://udn.com/news/story/7331/4713478 去年 1 208
## 14419 https://udn.com/news/story/7331/4713478 平台 1 208
## 14420 https://udn.com/news/story/7331/4713478 石油 1 208
## 14421 https://udn.com/news/story/7331/4713478 交通 1 208
## 14422 https://udn.com/news/story/7331/4713478 先前 1 208
## 14423 https://udn.com/news/story/7331/4713478 吃重 1 208
## 14424 https://udn.com/news/story/7331/4713478 合作 1 208
## 14425 https://udn.com/news/story/7331/4713478 多個 1 208
## 14426 https://udn.com/news/story/7331/4713478 有如 1 208
## 14427 https://udn.com/news/story/7331/4713478 有限公司 1 208
## 14428 https://udn.com/news/story/7331/4713478 此前 1 208
## 14429 https://udn.com/news/story/7331/4713478 行為 1 208
## 14430 https://udn.com/news/story/7331/4713478 利用 1 208
## 14431 https://udn.com/news/story/7331/4713478 助理 1 208
## 14432 https://udn.com/news/story/7331/4713478 並未 1 208
## 14433 https://udn.com/news/story/7331/4713478 亞太 1 208
## 14434 https://udn.com/news/story/7331/4713478 協助 1 208
## 14435 https://udn.com/news/story/7331/4713478 受到 1 208
## 14436 https://udn.com/news/story/7331/4713478 周邊國家 1 208
## 14437 https://udn.com/news/story/7331/4713478 東印度 1 208
## 14438 https://udn.com/news/story/7331/4713478 油田 1 208
## 14439 https://udn.com/news/story/7331/4713478 油氣 1 208
## 14440 https://udn.com/news/story/7331/4713478 爭議 1 208
## 14441 https://udn.com/news/story/7331/4713478 阻止 1 208
## 14442 https://udn.com/news/story/7331/4713478 則在 1 208
## 14443 https://udn.com/news/story/7331/4713478 南華早報 1 208
## 14444 https://udn.com/news/story/7331/4713478 威嚇 1 208
## 14445 https://udn.com/news/story/7331/4713478 後者 1 208
## 14446 https://udn.com/news/story/7331/4713478 持有 1 208
## 14447 https://udn.com/news/story/7331/4713478 政府 1 208
## 14448 https://udn.com/news/story/7331/4713478 派出 1 208
## 14449 https://udn.com/news/story/7331/4713478 界定 1 208
## 14450 https://udn.com/news/story/7331/4713478 科羅拉多州 1 208
## 14451 https://udn.com/news/story/7331/4713478 美國國務院 1 208
## 14452 https://udn.com/news/story/7331/4713478 美國聯邦 1 208
## 14453 https://udn.com/news/story/7331/4713478 若干 1 208
## 14454 https://udn.com/news/story/7331/4713478 英國 1 208
## 14455 https://udn.com/news/story/7331/4713478 要求 1 208
## 14456 https://udn.com/news/story/7331/4713478 重要 1 208
## 14457 https://udn.com/news/story/7331/4713478 香港 1 208
## 14458 https://udn.com/news/story/7331/4713478 凍結 1 208
## 14459 https://udn.com/news/story/7331/4713478 島礁 1 208
## 14460 https://udn.com/news/story/7331/4713478 拿下 1 208
## 14461 https://udn.com/news/story/7331/4713478 時期 1 208
## 14462 https://udn.com/news/story/7331/4713478 海域 1 208
## 14463 https://udn.com/news/story/7331/4713478 馬尼拉 1 208
## 14464 https://udn.com/news/story/7331/4713478 馬來西亞 1 208
## 14465 https://udn.com/news/story/7331/4713478 做生意 1 208
## 14466 https://udn.com/news/story/7331/4713478 參議員 1 208
## 14467 https://udn.com/news/story/7331/4713478 商業活動 1 208
## 14468 https://udn.com/news/story/7331/4713478 國內 1 208
## 14469 https://udn.com/news/story/7331/4713478 國務卿 1 208
## 14470 https://udn.com/news/story/7331/4713478 國際 1 208
## 14471 https://udn.com/news/story/7331/4713478 國際機場 1 208
## 14472 https://udn.com/news/story/7331/4713478 密切 1 208
## 14473 https://udn.com/news/story/7331/4713478 探勘 1 208
## 14474 https://udn.com/news/story/7331/4713478 推動 1 208
## 14475 https://udn.com/news/story/7331/4713478 教授 1 208
## 14476 https://udn.com/news/story/7331/4713478 祭出 1 208
## 14477 https://udn.com/news/story/7331/4713478 習近平 1 208
## 14478 https://udn.com/news/story/7331/4713478 設鑽油 1 208
## 14479 https://udn.com/news/story/7331/4713478 許多 1 208
## 14480 https://udn.com/news/story/7331/4713478 媒體 1 208
## 14481 https://udn.com/news/story/7331/4713478 提出 1 208
## 14482 https://udn.com/news/story/7331/4713478 智庫 1 208
## 14483 https://udn.com/news/story/7331/4713478 殖民 1 208
## 14484 https://udn.com/news/story/7331/4713478 發表演說 1 208
## 14485 https://udn.com/news/story/7331/4713478 華府 1 208
## 14486 https://udn.com/news/story/7331/4713478 越南 1 208
## 14487 https://udn.com/news/story/7331/4713478 開採 1 208
## 14488 https://udn.com/news/story/7331/4713478 集團 1 208
## 14489 https://udn.com/news/story/7331/4713478 幹部 1 208
## 14490 https://udn.com/news/story/7331/4713478 損失慘重 1 208
## 14491 https://udn.com/news/story/7331/4713478 損害 1 208
## 14492 https://udn.com/news/story/7331/4713478 準備 1 208
## 14493 https://udn.com/news/story/7331/4713478 詳述 1 208
## 14494 https://udn.com/news/story/7331/4713478 資產 1 208
## 14495 https://udn.com/news/story/7331/4713478 漁船 1 208
## 14496 https://udn.com/news/story/7331/4713478 領導人 1 208
## 14497 https://udn.com/news/story/7331/4713478 億美元 1 208
## 14498 https://udn.com/news/story/7331/4713478 墨西哥灣 1 208
## 14499 https://udn.com/news/story/7331/4713478 德州 1 208
## 14500 https://udn.com/news/story/7331/4713478 標案 1 208
## 14501 https://udn.com/news/story/7331/4713478 範圍 1 208
## 14502 https://udn.com/news/story/7331/4713478 調查 1 208
## 14503 https://udn.com/news/story/7331/4713478 魯比 1 208
## 14504 https://udn.com/news/story/7331/4713478 興建 1 208
## 14505 https://udn.com/news/story/7331/4713478 舉例 1 208
## 14506 https://udn.com/news/story/7331/4713478 還稱 1 208
## 14507 https://udn.com/news/story/7331/4713478 還說 1 208
## 14508 https://udn.com/news/story/7331/4713478 懷俄明州 1 208
## 14509 https://udn.com/news/story/7331/4713478 警告 1 208
## 14510 https://udn.com/news/story/7331/4713478 鑽油台 1 208
## 14511 https://udn.com/news/story/7331/4713855 一天 1 189
## 14512 https://udn.com/news/story/7331/4713855 一系列 1 189
## 14513 https://udn.com/news/story/7331/4713855 一週 1 189
## 14514 https://udn.com/news/story/7331/4713855 人員 1 189
## 14515 https://udn.com/news/story/7331/4713855 上述 1 189
## 14516 https://udn.com/news/story/7331/4713855 大型 1 189
## 14517 https://udn.com/news/story/7331/4713855 大部分 1 189
## 14518 https://udn.com/news/story/7331/4713855 不利於 1 189
## 14519 https://udn.com/news/story/7331/4713855 公司 1 189
## 14520 https://udn.com/news/story/7331/4713855 公布 1 189
## 14521 https://udn.com/news/story/7331/4713855 公開 1 189
## 14522 https://udn.com/news/story/7331/4713855 升溫 1 189
## 14523 https://udn.com/news/story/7331/4713855 北京 1 189
## 14524 https://udn.com/news/story/7331/4713855 巧合 1 189
## 14525 https://udn.com/news/story/7331/4713855 打擊 1 189
## 14526 https://udn.com/news/story/7331/4713855 用戶 1 189
## 14527 https://udn.com/news/story/7331/4713855 目的 1 189
## 14528 https://udn.com/news/story/7331/4713855 目前 1 189
## 14529 https://udn.com/news/story/7331/4713855 列舉 1 189
## 14530 https://udn.com/news/story/7331/4713855 因應 1 189
## 14531 https://udn.com/news/story/7331/4713855 此舉 1 189
## 14532 https://udn.com/news/story/7331/4713855 自由 1 189
## 14533 https://udn.com/news/story/7331/4713855 至少 1 189
## 14534 https://udn.com/news/story/7331/4713855 行動 1 189
## 14535 https://udn.com/news/story/7331/4713855 何種 1 189
## 14536 https://udn.com/news/story/7331/4713855 完全 1 189
## 14537 https://udn.com/news/story/7331/4713855 並由 1 189
## 14538 https://udn.com/news/story/7331/4713855 並會 1 189
## 14539 https://udn.com/news/story/7331/4713855 拉爾夫 1 189
## 14540 https://udn.com/news/story/7331/4713855 直接 1 189
## 14541 https://udn.com/news/story/7331/4713855 表明 1 189
## 14542 https://udn.com/news/story/7331/4713855 近日 1 189
## 14543 https://udn.com/news/story/7331/4713855 非法 1 189
## 14544 https://udn.com/news/story/7331/4713855 俄式 1 189
## 14545 https://udn.com/news/story/7331/4713855 型號 1 189
## 14546 https://udn.com/news/story/7331/4713855 客機 1 189
## 14547 https://udn.com/news/story/7331/4713855 宣稱 1 189
## 14548 https://udn.com/news/story/7331/4713855 相隔 1 189
## 14549 https://udn.com/news/story/7331/4713855 軍演 1 189
## 14550 https://udn.com/news/story/7331/4713855 原因 1 189
## 14551 https://udn.com/news/story/7331/4713855 航行 1 189
## 14552 https://udn.com/news/story/7331/4713855 航空母艦 1 189
## 14553 https://udn.com/news/story/7331/4713855 航艦 1 189
## 14554 https://udn.com/news/story/7331/4713855 訊息 1 189
## 14555 https://udn.com/news/story/7331/4713855 商用 1 189
## 14556 https://udn.com/news/story/7331/4713855 商業 1 189
## 14557 https://udn.com/news/story/7331/4713855 國務卿 1 189
## 14558 https://udn.com/news/story/7331/4713855 執行 1 189
## 14559 https://udn.com/news/story/7331/4713855 專家 1 189
## 14560 https://udn.com/news/story/7331/4713855 情勢 1 189
## 14561 https://udn.com/news/story/7331/4713855 推特 1 189
## 14562 https://udn.com/news/story/7331/4713855 許多 1 189
## 14563 https://udn.com/news/story/7331/4713855 透過 1 189
## 14564 https://udn.com/news/story/7331/4713855 富比 1 189
## 14565 https://udn.com/news/story/7331/4713855 最初 1 189
## 14566 https://udn.com/news/story/7331/4713855 發出 1 189
## 14567 https://udn.com/news/story/7331/4713855 發布 1 189
## 14568 https://udn.com/news/story/7331/4713855 發表 1 189
## 14569 https://udn.com/news/story/7331/4713855 距離 1 189
## 14570 https://udn.com/news/story/7331/4713855 進行 1 189
## 14571 https://udn.com/news/story/7331/4713855 進駐 1 189
## 14572 https://udn.com/news/story/7331/4713855 資料 1 189
## 14573 https://udn.com/news/story/7331/4713855 資源 1 189
## 14574 https://udn.com/news/story/7331/4713855 雷根 1 189
## 14575 https://udn.com/news/story/7331/4713855 圖像 1 189
## 14576 https://udn.com/news/story/7331/4713855 演習 1 189
## 14577 https://udn.com/news/story/7331/4713855 緊張 1 189
## 14578 https://udn.com/news/story/7331/4713855 緊張局勢 1 189
## 14579 https://udn.com/news/story/7331/4713855 製造 1 189
## 14580 https://udn.com/news/story/7331/4713855 說法 1 189
## 14581 https://udn.com/news/story/7331/4713855 領導 1 189
## 14582 https://udn.com/news/story/7331/4713855 影像 1 189
## 14583 https://udn.com/news/story/7331/4713855 確切 1 189
## 14584 https://udn.com/news/story/7331/4713855 駛入 1 189
## 14585 https://udn.com/news/story/7331/4713855 擁有 1 189
## 14586 https://udn.com/news/story/7331/4713855 據信 1 189
## 14587 https://udn.com/news/story/7331/4713855 機場 1 189
## 14588 https://udn.com/news/story/7331/4713855 辨認出 1 189
## 14589 https://udn.com/news/story/7331/4713855 隨後 1 189
## 14590 https://udn.com/news/story/7331/4713855 簡易 1 189
## 14591 https://udn.com/news/story/7331/4713855 雜誌 1 189
## 14592 https://udn.com/news/story/7331/4713855 離岸 1 189
## 14593 https://udn.com/news/story/7331/4713855 證實 1 189
## 14594 https://udn.com/news/story/7331/4713855 證據 1 189
## 14595 https://udn.com/news/story/7331/4713855 難以 1 189
## 14596 https://udn.com/news/story/7331/4713855 驅逐艦 1 189
## 14597 https://udn.com/news/story/7331/4724139 一些 1 214
## 14598 https://udn.com/news/story/7331/4724139 一款 1 214
## 14599 https://udn.com/news/story/7331/4724139 工作 1 214
## 14600 https://udn.com/news/story/7331/4724139 干擾 1 214
## 14601 https://udn.com/news/story/7331/4724139 不規則 1 214
## 14602 https://udn.com/news/story/7331/4724139 中方 1 214
## 14603 https://udn.com/news/story/7331/4724139 中美關係 1 214
## 14604 https://udn.com/news/story/7331/4724139 之前 1 214
## 14605 https://udn.com/news/story/7331/4724139 之際 1 214
## 14606 https://udn.com/news/story/7331/4724139 內有 1 214
## 14607 https://udn.com/news/story/7331/4724139 分別 1 214
## 14608 https://udn.com/news/story/7331/4724139 升級 1 214
## 14609 https://udn.com/news/story/7331/4724139 方式 1 214
## 14610 https://udn.com/news/story/7331/4724139 主要用途 1 214
## 14611 https://udn.com/news/story/7331/4724139 主權 1 214
## 14612 https://udn.com/news/story/7331/4724139 以南 1 214
## 14613 https://udn.com/news/story/7331/4724139 另有 1 214
## 14614 https://udn.com/news/story/7331/4724139 台灣 1 214
## 14615 https://udn.com/news/story/7331/4724139 外有 1 214
## 14616 https://udn.com/news/story/7331/4724139 平台 1 214
## 14617 https://udn.com/news/story/7331/4724139 打著 1 214
## 14618 https://udn.com/news/story/7331/4724139 生產 1 214
## 14619 https://udn.com/news/story/7331/4724139 用於 1 214
## 14620 https://udn.com/news/story/7331/4724139 目標 1 214
## 14621 https://udn.com/news/story/7331/4724139 向西 1 214
## 14622 https://udn.com/news/story/7331/4724139 在此之前 1 214
## 14623 https://udn.com/news/story/7331/4724139 安全 1 214
## 14624 https://udn.com/news/story/7331/4724139 自由 1 214
## 14625 https://udn.com/news/story/7331/4724139 利益 1 214
## 14626 https://udn.com/news/story/7331/4724139 吳謙 1 214
## 14627 https://udn.com/news/story/7331/4724139 宋忠平 1 214
## 14628 https://udn.com/news/story/7331/4724139 快速 1 214
## 14629 https://udn.com/news/story/7331/4724139 折返 1 214
## 14630 https://udn.com/news/story/7331/4724139 兩架 1 214
## 14631 https://udn.com/news/story/7331/4724139 取代 1 214
## 14632 https://udn.com/news/story/7331/4724139 和平 1 214
## 14633 https://udn.com/news/story/7331/4724139 所謂 1 214
## 14634 https://udn.com/news/story/7331/4724139 東海 1 214
## 14635 https://udn.com/news/story/7331/4724139 波音公司 1 214
## 14636 https://udn.com/news/story/7331/4724139 版本 1 214
## 14637 https://udn.com/news/story/7331/4724139 空地 1 214
## 14638 https://udn.com/news/story/7331/4724139 空域 1 214
## 14639 https://udn.com/news/story/7331/4724139 近海 1 214
## 14640 https://udn.com/news/story/7331/4724139 南韓 1 214
## 14641 https://udn.com/news/story/7331/4724139 型號 1 214
## 14642 https://udn.com/news/story/7331/4724139 挑釁 1 214
## 14643 https://udn.com/news/story/7331/4724139 活動 1 214
## 14644 https://udn.com/news/story/7331/4724139 派出 1 214
## 14645 https://udn.com/news/story/7331/4724139 相關 1 214
## 14646 https://udn.com/news/story/7331/4724139 美軍 1 214
## 14647 https://udn.com/news/story/7331/4724139 美國空軍 1 214
## 14648 https://udn.com/news/story/7331/4724139 軍用 1 214
## 14649 https://udn.com/news/story/7331/4724139 降低 1 214
## 14650 https://udn.com/news/story/7331/4724139 個彈 1 214
## 14651 https://udn.com/news/story/7331/4724139 海域 1 214
## 14652 https://udn.com/news/story/7331/4724139 消息 1 214
## 14653 https://udn.com/news/story/7331/4724139 航行 1 214
## 14654 https://udn.com/news/story/7331/4724139 訓練 1 214
## 14655 https://udn.com/news/story/7331/4724139 起飛 1 214
## 14656 https://udn.com/news/story/7331/4724139 針對性 1 214
## 14657 https://udn.com/news/story/7331/4724139 國防部 1 214
## 14658 https://udn.com/news/story/7331/4724139 域外 1 214
## 14659 https://udn.com/news/story/7331/4724139 基地 1 214
## 14660 https://udn.com/news/story/7331/4724139 專心 1 214
## 14661 https://udn.com/news/story/7331/4724139 專家 1 214
## 14662 https://udn.com/news/story/7331/4724139 常規 1 214
## 14663 https://udn.com/news/story/7331/4724139 掛點 1 214
## 14664 https://udn.com/news/story/7331/4724139 採取 1 214
## 14665 https://udn.com/news/story/7331/4724139 接近 1 214
## 14666 https://udn.com/news/story/7331/4724139 設計 1 214
## 14667 https://udn.com/news/story/7331/4724139 連續 1 214
## 14668 https://udn.com/news/story/7331/4724139 魚雷 1 214
## 14669 https://udn.com/news/story/7331/4724139 報導 1 214
## 14670 https://udn.com/news/story/7331/4724139 無法 1 214
## 14671 https://udn.com/news/story/7331/4724139 發布 1 214
## 14672 https://udn.com/news/story/7331/4724139 發言人 1 214
## 14673 https://udn.com/news/story/7331/4724139 結構 1 214
## 14674 https://udn.com/news/story/7331/4724139 傳出 1 214
## 14675 https://udn.com/news/story/7331/4724139 幌子 1 214
## 14676 https://udn.com/news/story/7331/4724139 感測器 1 214
## 14677 https://udn.com/news/story/7331/4724139 新一代 1 214
## 14678 https://udn.com/news/story/7331/4724139 新聞 1 214
## 14679 https://udn.com/news/story/7331/4724139 極強 1 214
## 14680 https://udn.com/news/story/7331/4724139 當天 1 214
## 14681 https://udn.com/news/story/7331/4724139 該機 1 214
## 14682 https://udn.com/news/story/7331/4724139 電子 1 214
## 14683 https://udn.com/news/story/7331/4724139 電磁 1 214
## 14684 https://udn.com/news/story/7331/4724139 實施 1 214
## 14685 https://udn.com/news/story/7331/4724139 截獲 1 214
## 14686 https://udn.com/news/story/7331/4724139 演習 1 214
## 14687 https://udn.com/news/story/7331/4724139 監視 1 214
## 14688 https://udn.com/news/story/7331/4724139 緊張 1 214
## 14689 https://udn.com/news/story/7331/4724139 暫停 1 214
## 14690 https://udn.com/news/story/7331/4724139 戰術 1 214
## 14691 https://udn.com/news/story/7331/4724139 機率 1 214
## 14692 https://udn.com/news/story/7331/4724139 頻度 1 214
## 14693 https://udn.com/news/story/7331/4724139 頻繁 1 214
## 14694 https://udn.com/news/story/7331/4724139 頻譜 1 214
## 14695 https://udn.com/news/story/7331/4724139 獲取 1 214
## 14696 https://udn.com/news/story/7331/4724139 環球網 1 214
## 14697 https://udn.com/news/story/7331/4724139 舉行 1 214
## 14698 https://udn.com/news/story/7331/4724139 穩定 1 214
## 14699 https://udn.com/news/story/7331/4724139 嚴重危害 1 214
## 14700 https://udn.com/news/story/7331/4724139 嚴重破壞 1 214
## 14701 https://udn.com/news/story/7331/4724139 攔截 1 214
## 14702 https://udn.com/news/story/7331/4724139 艦機來 1 214
## 14703 https://udn.com/news/story/7331/4727917 一段距離 1 142
## 14704 https://udn.com/news/story/7331/4727917 之際 1 142
## 14705 https://udn.com/news/story/7331/4727917 分別 1 142
## 14706 https://udn.com/news/story/7331/4727917 方向 1 142
## 14707 https://udn.com/news/story/7331/4727917 日前 1 142
## 14708 https://udn.com/news/story/7331/4727917 日將 1 142
## 14709 https://udn.com/news/story/7331/4727917 出現 1 142
## 14710 https://udn.com/news/story/7331/4727917 加油機 1 142
## 14711 https://udn.com/news/story/7331/4727917 北京大學 1 142
## 14712 https://udn.com/news/story/7331/4727917 北部灣 1 142
## 14713 https://udn.com/news/story/7331/4727917 必須 1 142
## 14714 https://udn.com/news/story/7331/4727917 打靶 1 142
## 14715 https://udn.com/news/story/7331/4727917 本月 1 142
## 14716 https://udn.com/news/story/7331/4727917 任何人 1 142
## 14717 https://udn.com/news/story/7331/4727917 任務 1 142
## 14718 https://udn.com/news/story/7331/4727917 先後 1 142
## 14719 https://udn.com/news/story/7331/4727917 向西 1 142
## 14720 https://udn.com/news/story/7331/4727917 此次 1 142
## 14721 https://udn.com/news/story/7331/4727917 此前 1 142
## 14722 https://udn.com/news/story/7331/4727917 西太平洋 1 142
## 14723 https://udn.com/news/story/7331/4727917 西南部 1 142
## 14724 https://udn.com/news/story/7331/4727917 西濱 1 142
## 14725 https://udn.com/news/story/7331/4727917 位於 1 142
## 14726 https://udn.com/news/story/7331/4727917 作業 1 142
## 14727 https://udn.com/news/story/7331/4727917 折返 1 142
## 14728 https://udn.com/news/story/7331/4727917 官方 1 142
## 14729 https://udn.com/news/story/7331/4727917 屆時 1 142
## 14730 https://udn.com/news/story/7331/4727917 明天 1 142
## 14731 https://udn.com/news/story/7331/4727917 東接 1 142
## 14732 https://udn.com/news/story/7331/4727917 空中 1 142
## 14733 https://udn.com/news/story/7331/4727917 威力 1 142
## 14734 https://udn.com/news/story/7331/4727917 後果自負 1 142
## 14735 https://udn.com/news/story/7331/4727917 指出 1 142
## 14736 https://udn.com/news/story/7331/4727917 派出 1 142
## 14737 https://udn.com/news/story/7331/4727917 相應 1 142
## 14738 https://udn.com/news/story/7331/4727917 研究院 1 142
## 14739 https://udn.com/news/story/7331/4727917 計畫 1 142
## 14740 https://udn.com/news/story/7331/4727917 軍機 1 142
## 14741 https://udn.com/news/story/7331/4727917 香港 1 142
## 14742 https://udn.com/news/story/7331/4727917 海上 1 142
## 14743 https://udn.com/news/story/7331/4727917 海洋 1 142
## 14744 https://udn.com/news/story/7331/4727917 消息 1 142
## 14745 https://udn.com/news/story/7331/4727917 航行 1 142
## 14746 https://udn.com/news/story/7331/4727917 起至 1 142
## 14747 https://udn.com/news/story/7331/4727917 停泊 1 142
## 14748 https://udn.com/news/story/7331/4727917 偵察機 1 142
## 14749 https://udn.com/news/story/7331/4727917 執行 1 142
## 14750 https://udn.com/news/story/7331/4727917 將在 1 142
## 14751 https://udn.com/news/story/7331/4727917 帳號 1 142
## 14752 https://udn.com/news/story/7331/4727917 推特 1 142
## 14753 https://udn.com/news/story/7331/4727917 晚間 1 142
## 14754 https://udn.com/news/story/7331/4727917 船隻 1 142
## 14755 https://udn.com/news/story/7331/4727917 造成 1 142
## 14756 https://udn.com/news/story/7331/4727917 部隊 1 142
## 14757 https://udn.com/news/story/7331/4727917 陸媒 1 142
## 14758 https://udn.com/news/story/7331/4727917 報導 1 142
## 14759 https://udn.com/news/story/7331/4727917 港內 1 142
## 14760 https://udn.com/news/story/7331/4727917 發出 1 142
## 14761 https://udn.com/news/story/7331/4727917 發布 1 142
## 14762 https://udn.com/news/story/7331/4727917 感知 1 142
## 14763 https://udn.com/news/story/7331/4727917 極大 1 142
## 14764 https://udn.com/news/story/7331/4727917 電台 1 142
## 14765 https://udn.com/news/story/7331/4727917 實彈射擊 1 142
## 14766 https://udn.com/news/story/7331/4727917 實彈演習 1 142
## 14767 https://udn.com/news/story/7331/4727917 態勢 1 142
## 14768 https://udn.com/news/story/7331/4727917 漁業 1 142
## 14769 https://udn.com/news/story/7331/4727917 演習 1 142
## 14770 https://udn.com/news/story/7331/4727917 綜合 1 142
## 14771 https://udn.com/news/story/7331/4727917 誤炸 1 142
## 14772 https://udn.com/news/story/7331/4727917 誤傷 1 142
## 14773 https://udn.com/news/story/7331/4727917 彈藥 1 142
## 14774 https://udn.com/news/story/7331/4727917 戰略 1 142
## 14775 https://udn.com/news/story/7331/4727917 覆蓋範圍 1 142
## 14776 https://udn.com/news/story/7331/4727917 警示 1 142
## 14777 https://udn.com/news/story/7331/4731672 一名 1 186
## 14778 https://udn.com/news/story/7331/4731672 一段 1 186
## 14779 https://udn.com/news/story/7331/4731672 上半年 1 186
## 14780 https://udn.com/news/story/7331/4731672 大陸 1 186
## 14781 https://udn.com/news/story/7331/4731672 不到 1 186
## 14782 https://udn.com/news/story/7331/4731672 中方 1 186
## 14783 https://udn.com/news/story/7331/4731672 公布 1 186
## 14784 https://udn.com/news/story/7331/4731672 分別 1 186
## 14785 https://udn.com/news/story/7331/4731672 反潛 1 186
## 14786 https://udn.com/news/story/7331/4731672 反潛機 1 186
## 14787 https://udn.com/news/story/7331/4731672 引述 1 186
## 14788 https://udn.com/news/story/7331/4731672 主任 1 186
## 14789 https://udn.com/news/story/7331/4731672 以來 1 186
## 14790 https://udn.com/news/story/7331/4731672 包含 1 186
## 14791 https://udn.com/news/story/7331/4731672 包括 1 186
## 14792 https://udn.com/news/story/7331/4731672 北京 1 186
## 14793 https://udn.com/news/story/7331/4731672 可能 1 186
## 14794 https://udn.com/news/story/7331/4731672 尼米茲 1 186
## 14795 https://udn.com/news/story/7331/4731672 打擊 1 186
## 14796 https://udn.com/news/story/7331/4731672 本月 1 186
## 14797 https://udn.com/news/story/7331/4731672 目的 1 186
## 14798 https://udn.com/news/story/7331/4731672 各率 1 186
## 14799 https://udn.com/news/story/7331/4731672 地方 1 186
## 14800 https://udn.com/news/story/7331/4731672 地區 1 186
## 14801 https://udn.com/news/story/7331/4731672 多達 1 186
## 14802 https://udn.com/news/story/7331/4731672 多樣 1 186
## 14803 https://udn.com/news/story/7331/4731672 早上 1 186
## 14804 https://udn.com/news/story/7331/4731672 次飛 1 186
## 14805 https://udn.com/news/story/7331/4731672 次數 1 186
## 14806 https://udn.com/news/story/7331/4731672 西沙 1 186
## 14807 https://udn.com/news/story/7331/4731672 似為 1 186
## 14808 https://udn.com/news/story/7331/4731672 巡邏 1 186
## 14809 https://udn.com/news/story/7331/4731672 改道 1 186
## 14810 https://udn.com/news/story/7331/4731672 更近 1 186
## 14811 https://udn.com/news/story/7331/4731672 更高 1 186
## 14812 https://udn.com/news/story/7331/4731672 每天 1 186
## 14813 https://udn.com/news/story/7331/4731672 兩度 1 186
## 14814 https://udn.com/news/story/7331/4731672 空中 1 186
## 14815 https://udn.com/news/story/7331/4731672 信號 1 186
## 14816 https://udn.com/news/story/7331/4731672 南部 1 186
## 14817 https://udn.com/news/story/7331/4731672 南華早報 1 186
## 14818 https://udn.com/news/story/7331/4731672 指揮 1 186
## 14819 https://udn.com/news/story/7331/4731672 看出 1 186
## 14820 https://udn.com/news/story/7331/4731672 美國空軍 1 186
## 14821 https://udn.com/news/story/7331/4731672 胡波 1 186
## 14822 https://udn.com/news/story/7331/4731672 計畫 1 186
## 14823 https://udn.com/news/story/7331/4731672 音質 1 186
## 14824 https://udn.com/news/story/7331/4731672 飛至 1 186
## 14825 https://udn.com/news/story/7331/4731672 飛得 1 186
## 14826 https://udn.com/news/story/7331/4731672 香港 1 186
## 14827 https://udn.com/news/story/7331/4731672 香腸 1 186
## 14828 https://udn.com/news/story/7331/4731672 海南省 1 186
## 14829 https://udn.com/news/story/7331/4731672 航空母艦 1 186
## 14830 https://udn.com/news/story/7331/4731672 偵測 1 186
## 14831 https://udn.com/news/story/7331/4731672 參數 1 186
## 14832 https://udn.com/news/story/7331/4731672 執行 1 186
## 14833 https://udn.com/news/story/7331/4731672 基地 1 186
## 14834 https://udn.com/news/story/7331/4731672 將被 1 186
## 14835 https://udn.com/news/story/7331/4731672 從事 1 186
## 14836 https://udn.com/news/story/7331/4731672 異常 1 186
## 14837 https://udn.com/news/story/7331/4731672 統計 1 186
## 14838 https://udn.com/news/story/7331/4731672 通聯 1 186
## 14839 https://udn.com/news/story/7331/4731672 單是 1 186
## 14840 https://udn.com/news/story/7331/4731672 幾天 1 186
## 14841 https://udn.com/news/story/7331/4731672 幾乎 1 186
## 14842 https://udn.com/news/story/7331/4731672 智庫 1 186
## 14843 https://udn.com/news/story/7331/4731672 最靠近 1 186
## 14844 https://udn.com/news/story/7331/4731672 期間 1 186
## 14845 https://udn.com/news/story/7331/4731672 稍早 1 186
## 14846 https://udn.com/news/story/7331/4731672 距離 1 186
## 14847 https://udn.com/news/story/7331/4731672 週中 1 186
## 14848 https://udn.com/news/story/7331/4731672 週從 1 186
## 14849 https://udn.com/news/story/7331/4731672 進行 1 186
## 14850 https://udn.com/news/story/7331/4731672 階段 1 186
## 14851 https://udn.com/news/story/7331/4731672 僅約 1 186
## 14852 https://udn.com/news/story/7331/4731672 感知 1 186
## 14853 https://udn.com/news/story/7331/4731672 當天 1 186
## 14854 https://udn.com/news/story/7331/4731672 當時 1 186
## 14855 https://udn.com/news/story/7331/4731672 群島 1 186
## 14856 https://udn.com/news/story/7331/4731672 過去 1 186
## 14857 https://udn.com/news/story/7331/4731672 雷根 1 186
## 14858 https://udn.com/news/story/7331/4731672 雷達 1 186
## 14859 https://udn.com/news/story/7331/4731672 電子 1 186
## 14860 https://udn.com/news/story/7331/4731672 嘈雜 1 186
## 14861 https://udn.com/news/story/7331/4731672 態勢 1 186
## 14862 https://udn.com/news/story/7331/4731672 演習 1 186
## 14863 https://udn.com/news/story/7331/4731672 監視 1 186
## 14864 https://udn.com/news/story/7331/4731672 種類 1 186
## 14865 https://udn.com/news/story/7331/4731672 增至 1 186
## 14866 https://udn.com/news/story/7331/4731672 廣東省 1 186
## 14867 https://udn.com/news/story/7331/4731672 範圍 1 186
## 14868 https://udn.com/news/story/7331/4731672 鄰近 1 186
## 14869 https://udn.com/news/story/7331/4731672 戰略 1 186
## 14870 https://udn.com/news/story/7331/4731672 機型 1 186
## 14871 https://udn.com/news/story/7331/4731672 機就 1 186
## 14872 https://udn.com/news/story/7331/4731672 錄得 1 186
## 14873 https://udn.com/news/story/7331/4731672 頻繁 1 186
## 14874 https://udn.com/news/story/7331/4731672 聯合 1 186
## 14875 https://udn.com/news/story/7331/4731672 舉行 1 186
## 14876 https://udn.com/news/story/7331/4731672 闖到 1 186
## 14877 https://udn.com/news/story/7331/4731672 攔截 1 186
## 14878 https://udn.com/news/story/7331/4731672 警告 1 186
## 14879 https://udn.com/news/story/7331/4731672 顯示 1 186
## 14880 https://udn.com/news/story/7331/4731750 大陸架 1 279
## 14881 https://udn.com/news/story/7331/4731750 不同 1 279
## 14882 https://udn.com/news/story/7331/4731750 中方 1 279
## 14883 https://udn.com/news/story/7331/4731750 中旬 1 279
## 14884 https://udn.com/news/story/7331/4731750 中國人民解放軍 1 279
## 14885 https://udn.com/news/story/7331/4731750 之後 1 279
## 14886 https://udn.com/news/story/7331/4731750 內部 1 279
## 14887 https://udn.com/news/story/7331/4731750 公開 1 279
## 14888 https://udn.com/news/story/7331/4731750 分別 1 279
## 14889 https://udn.com/news/story/7331/4731750 分類 1 279
## 14890 https://udn.com/news/story/7331/4731750 天在 1 279
## 14891 https://udn.com/news/story/7331/4731750 巴士海峽 1 279
## 14892 https://udn.com/news/story/7331/4731750 引述 1 279
## 14893 https://udn.com/news/story/7331/4731750 方式 1 279
## 14894 https://udn.com/news/story/7331/4731750 日到 1 279
## 14895 https://udn.com/news/story/7331/4731750 日起 1 279
## 14896 https://udn.com/news/story/7331/4731750 水域 1 279
## 14897 https://udn.com/news/story/7331/4731750 以西 1 279
## 14898 https://udn.com/news/story/7331/4731750 包括 1 279
## 14899 https://udn.com/news/story/7331/4731750 北京大學 1 279
## 14900 https://udn.com/news/story/7331/4731750 北海 1 279
## 14901 https://udn.com/news/story/7331/4731750 可能 1 279
## 14902 https://udn.com/news/story/7331/4731750 台微 1 279
## 14903 https://udn.com/news/story/7331/4731750 外圍 1 279
## 14904 https://udn.com/news/story/7331/4731750 打著 1 279
## 14905 https://udn.com/news/story/7331/4731750 立場 1 279
## 14906 https://udn.com/news/story/7331/4731750 印尼 1 279
## 14907 https://udn.com/news/story/7331/4731750 在內 1 279
## 14908 https://udn.com/news/story/7331/4731750 安全 1 279
## 14909 https://udn.com/news/story/7331/4731750 此前 1 279
## 14910 https://udn.com/news/story/7331/4731750 自由 1 279
## 14911 https://udn.com/news/story/7331/4731750 行為 1 279
## 14912 https://udn.com/news/story/7331/4731750 但據 1 279
## 14913 https://udn.com/news/story/7331/4731750 利益 1 279
## 14914 https://udn.com/news/story/7331/4731750 吳謙 1 279
## 14915 https://udn.com/news/story/7331/4731750 局勢 1 279
## 14916 https://udn.com/news/story/7331/4731750 汶萊等 1 279
## 14917 https://udn.com/news/story/7331/4731750 沒有 1 279
## 14918 https://udn.com/news/story/7331/4731750 並發布 1 279
## 14919 https://udn.com/news/story/7331/4731750 兩架 1 279
## 14920 https://udn.com/news/story/7331/4731750 所有 1 279
## 14921 https://udn.com/news/story/7331/4731750 所謂 1 279
## 14922 https://udn.com/news/story/7331/4731750 明顯 1 279
## 14923 https://udn.com/news/story/7331/4731750 油料 1 279
## 14924 https://udn.com/news/story/7331/4731750 法律依據 1 279
## 14925 https://udn.com/news/story/7331/4731750 爭議 1 279
## 14926 https://udn.com/news/story/7331/4731750 表明 1 279
## 14927 https://udn.com/news/story/7331/4731750 近期 1 279
## 14928 https://udn.com/news/story/7331/4731750 促請 1 279
## 14929 https://udn.com/news/story/7331/4731750 信公眾號 1 279
## 14930 https://udn.com/news/story/7331/4731750 信息 1 279
## 14931 https://udn.com/news/story/7331/4731750 南中國海 1 279
## 14932 https://udn.com/news/story/7331/4731750 宣布 1 279
## 14933 https://udn.com/news/story/7331/4731750 宣稱 1 279
## 14934 https://udn.com/news/story/7331/4731750 派遣 1 279
## 14935 https://udn.com/news/story/7331/4731750 牴觸 1 279
## 14936 https://udn.com/news/story/7331/4731750 看法 1 279
## 14937 https://udn.com/news/story/7331/4731750 研究院 1 279
## 14938 https://udn.com/news/story/7331/4731750 計畫 1 279
## 14939 https://udn.com/news/story/7331/4731750 軍方 1 279
## 14940 https://udn.com/news/story/7331/4731750 軍用 1 279
## 14941 https://udn.com/news/story/7331/4731750 軍事 1 279
## 14942 https://udn.com/news/story/7331/4731750 軍艦 1 279
## 14943 https://udn.com/news/story/7331/4731750 飛行 1 279
## 14944 https://udn.com/news/story/7331/4731750 飛機 1 279
## 14945 https://udn.com/news/story/7331/4731750 首日 1 279
## 14946 https://udn.com/news/story/7331/4731750 首次 1 279
## 14947 https://udn.com/news/story/7331/4731750 島嶼 1 279
## 14948 https://udn.com/news/story/7331/4731750 海事 1 279
## 14949 https://udn.com/news/story/7331/4731750 海洋法 1 279
## 14950 https://udn.com/news/story/7331/4731750 海軍 1 279
## 14951 https://udn.com/news/story/7331/4731750 海域 1 279
## 14952 https://udn.com/news/story/7331/4731750 特發 1 279
## 14953 https://udn.com/news/story/7331/4731750 航行 1 279
## 14954 https://udn.com/news/story/7331/4731750 針對性 1 279
## 14955 https://udn.com/news/story/7331/4731750 馬來西亞 1 279
## 14956 https://udn.com/news/story/7331/4731750 區域 1 279
## 14957 https://udn.com/news/story/7331/4731750 國防部 1 279
## 14958 https://udn.com/news/story/7331/4731750 國際法 1 279
## 14959 https://udn.com/news/story/7331/4731750 域外 1 279
## 14960 https://udn.com/news/story/7331/4731750 基於 1 279
## 14961 https://udn.com/news/story/7331/4731750 將於 1 279
## 14962 https://udn.com/news/story/7331/4731750 專屬經濟區 1 279
## 14963 https://udn.com/news/story/7331/4731750 組織 1 279
## 14964 https://udn.com/news/story/7331/4731750 規定 1 279
## 14965 https://udn.com/news/story/7331/4731750 連接 1 279
## 14966 https://udn.com/news/story/7331/4731750 連續 1 279
## 14967 https://udn.com/news/story/7331/4731750 部隊 1 279
## 14968 https://udn.com/news/story/7331/4731750 陸媒 1 279
## 14969 https://udn.com/news/story/7331/4731750 提出 1 279
## 14970 https://udn.com/news/story/7331/4731750 發出 1 279
## 14971 https://udn.com/news/story/7331/4731750 發布 1 279
## 14972 https://udn.com/news/story/7331/4731750 發言人 1 279
## 14973 https://udn.com/news/story/7331/4731750 菲律賓 1 279
## 14974 https://udn.com/news/story/7331/4731750 越南 1 279
## 14975 https://udn.com/news/story/7331/4731750 進入 1 279
## 14976 https://udn.com/news/story/7331/4731750 幌子 1 279
## 14977 https://udn.com/news/story/7331/4731750 感知 1 279
## 14978 https://udn.com/news/story/7331/4731750 新聞 1 279
## 14979 https://udn.com/news/story/7331/4731750 極強 1 279
## 14980 https://udn.com/news/story/7331/4731750 當前 1 279
## 14981 https://udn.com/news/story/7331/4731750 腹背受敵 1 279
## 14982 https://udn.com/news/story/7331/4731750 補給 1 279
## 14983 https://udn.com/news/story/7331/4731750 解決 1 279
## 14984 https://udn.com/news/story/7331/4731750 雷州半島 1 279
## 14985 https://udn.com/news/story/7331/4731750 劃出 1 279
## 14986 https://udn.com/news/story/7331/4731750 實施 1 279
## 14987 https://udn.com/news/story/7331/4731750 態勢 1 279
## 14988 https://udn.com/news/story/7331/4731750 演習 1 279
## 14989 https://udn.com/news/story/7331/4731750 領海 1 279
## 14990 https://udn.com/news/story/7331/4731750 廣播電視 1 279
## 14991 https://udn.com/news/story/7331/4731750 戰略 1 279
## 14992 https://udn.com/news/story/7331/4731750 遵守 1 279
## 14993 https://udn.com/news/story/7331/4731750 頻度 1 279
## 14994 https://udn.com/news/story/7331/4731750 頻繁 1 279
## 14995 https://udn.com/news/story/7331/4731750 環球網 1 279
## 14996 https://udn.com/news/story/7331/4731750 總體 1 279
## 14997 https://udn.com/news/story/7331/4731750 聲索 1 279
## 14998 https://udn.com/news/story/7331/4731750 聲稱 1 279
## 14999 https://udn.com/news/story/7331/4731750 舉行 1 279
## 15000 https://udn.com/news/story/7331/4731750 點或 1 279
## 15001 https://udn.com/news/story/7331/4731750 識別 1 279
## 15002 https://udn.com/news/story/7331/4731750 嚴重危害 1 279
## 15003 https://udn.com/news/story/7331/4731750 嚴重破壞 1 279
## 15004 https://udn.com/news/story/7331/4731750 艦機來 1 279
## 15005 https://udn.com/news/story/7331/4737312 一己 1 291
## 15006 https://udn.com/news/story/7331/4737312 一再 1 291
## 15007 https://udn.com/news/story/7331/4737312 一些 1 291
## 15008 https://udn.com/news/story/7331/4737312 一張 1 291
## 15009 https://udn.com/news/story/7331/4737312 一道 1 291
## 15010 https://udn.com/news/story/7331/4737312 人士 1 291
## 15011 https://udn.com/news/story/7331/4737312 十多個 1 291
## 15012 https://udn.com/news/story/7331/4737312 上不持 1 291
## 15013 https://udn.com/news/story/7331/4737312 上半年 1 291
## 15014 https://udn.com/news/story/7331/4737312 口口聲聲 1 291
## 15015 https://udn.com/news/story/7331/4737312 大家 1 291
## 15016 https://udn.com/news/story/7331/4737312 已經 1 291
## 15017 https://udn.com/news/story/7331/4737312 不可告人 1 291
## 15018 https://udn.com/news/story/7331/4737312 不合 1 291
## 15019 https://udn.com/news/story/7331/4737312 不利於 1 291
## 15020 https://udn.com/news/story/7331/4737312 不亂 1 291
## 15021 https://udn.com/news/story/7331/4737312 不會 1 291
## 15022 https://udn.com/news/story/7331/4737312 不禁 1 291
## 15023 https://udn.com/news/story/7331/4737312 中方 1 291
## 15024 https://udn.com/news/story/7331/4737312 之名 1 291
## 15025 https://udn.com/news/story/7331/4737312 之實 1 291
## 15026 https://udn.com/news/story/7331/4737312 今年 1 291
## 15027 https://udn.com/news/story/7331/4737312 公然 1 291
## 15028 https://udn.com/news/story/7331/4737312 公開 1 291
## 15029 https://udn.com/news/story/7331/4737312 少數 1 291
## 15030 https://udn.com/news/story/7331/4737312 日前 1 291
## 15031 https://udn.com/news/story/7331/4737312 世界冠軍 1 291
## 15032 https://udn.com/news/story/7331/4737312 以來 1 291
## 15033 https://udn.com/news/story/7331/4737312 外交部 1 291
## 15034 https://udn.com/news/story/7331/4737312 本月 1 291
## 15035 https://udn.com/news/story/7331/4737312 正試圖 1 291
## 15036 https://udn.com/news/story/7331/4737312 目的 1 291
## 15037 https://udn.com/news/story/7331/4737312 矛盾 1 291
## 15038 https://udn.com/news/story/7331/4737312 企圖 1 291
## 15039 https://udn.com/news/story/7331/4737312 伊拉克 1 291
## 15040 https://udn.com/news/story/7331/4737312 共同 1 291
## 15041 https://udn.com/news/story/7331/4737312 各方 1 291
## 15042 https://udn.com/news/story/7331/4737312 合則 1 291
## 15043 https://udn.com/news/story/7331/4737312 在內 1 291
## 15044 https://udn.com/news/story/7331/4737312 多萬 1 291
## 15045 https://udn.com/news/story/7331/4737312 多達 1 291
## 15046 https://udn.com/news/story/7331/4737312 有必 1 291
## 15047 https://udn.com/news/story/7331/4737312 死亡 1 291
## 15048 https://udn.com/news/story/7331/4737312 至今 1 291
## 15049 https://udn.com/news/story/7331/4737312 行事 1 291
## 15050 https://udn.com/news/story/7331/4737312 行動 1 291
## 15051 https://udn.com/news/story/7331/4737312 利比亞 1 291
## 15052 https://udn.com/news/story/7331/4737312 利益 1 291
## 15053 https://udn.com/news/story/7331/4737312 局勢 1 291
## 15054 https://udn.com/news/story/7331/4737312 把雙 1 291
## 15055 https://udn.com/news/story/7331/4737312 攻擊 1 291
## 15056 https://udn.com/news/story/7331/4737312 沒有 1 291
## 15057 https://udn.com/news/story/7331/4737312 私利 1 291
## 15058 https://udn.com/news/story/7331/4737312 究竟 1 291
## 15059 https://udn.com/news/story/7331/4737312 言論 1 291
## 15060 https://udn.com/news/story/7331/4737312 事端 1 291
## 15061 https://udn.com/news/story/7331/4737312 來說 1 291
## 15062 https://udn.com/news/story/7331/4737312 例行 1 291
## 15063 https://udn.com/news/story/7331/4737312 協商 1 291
## 15064 https://udn.com/news/story/7331/4737312 和平 1 291
## 15065 https://udn.com/news/story/7331/4737312 始終 1 291
## 15066 https://udn.com/news/story/7331/4737312 承諾 1 291
## 15067 https://udn.com/news/story/7331/4737312 抵近 1 291
## 15068 https://udn.com/news/story/7331/4737312 抹黑 1 291
## 15069 https://udn.com/news/story/7331/4737312 沿岸國 1 291
## 15070 https://udn.com/news/story/7331/4737312 爭取 1 291
## 15071 https://udn.com/news/story/7331/4737312 爭端 1 291
## 15072 https://udn.com/news/story/7331/4737312 知道 1 291
## 15073 https://udn.com/news/story/7331/4737312 近日 1 291
## 15074 https://udn.com/news/story/7331/4737312 近來 1 291
## 15075 https://udn.com/news/story/7331/4737312 保持 1 291
## 15076 https://udn.com/news/story/7331/4737312 則棄 1 291
## 15077 https://udn.com/news/story/7331/4737312 宣言 1 291
## 15078 https://udn.com/news/story/7331/4737312 帝國 1 291
## 15079 https://udn.com/news/story/7331/4737312 恪守 1 291
## 15080 https://udn.com/news/story/7331/4737312 恰恰 1 291
## 15081 https://udn.com/news/story/7331/4737312 挑起 1 291
## 15082 https://udn.com/news/story/7331/4737312 挑撥 1 291
## 15083 https://udn.com/news/story/7331/4737312 政策 1 291
## 15084 https://udn.com/news/story/7331/4737312 活動 1 291
## 15085 https://udn.com/news/story/7331/4737312 流離失所 1 291
## 15086 https://udn.com/news/story/7331/4737312 要問 1 291
## 15087 https://udn.com/news/story/7331/4737312 要說 1 291
## 15088 https://udn.com/news/story/7331/4737312 軍艦 1 291
## 15089 https://udn.com/news/story/7331/4737312 海上 1 291
## 15090 https://udn.com/news/story/7331/4737312 海洋權益 1 291
## 15091 https://udn.com/news/story/7331/4737312 海域 1 291
## 15092 https://udn.com/news/story/7331/4737312 航母 1 291
## 15093 https://udn.com/news/story/7331/4737312 記者會 1 291
## 15094 https://udn.com/news/story/7331/4737312 退出 1 291
## 15095 https://udn.com/news/story/7331/4737312 偵查 1 291
## 15096 https://udn.com/news/story/7331/4737312 唯恐 1 291
## 15097 https://udn.com/news/story/7331/4737312 國務卿 1 291
## 15098 https://udn.com/news/story/7331/4737312 基礎 1 291
## 15099 https://udn.com/news/story/7331/4737312 堅持 1 291
## 15100 https://udn.com/news/story/7331/4737312 強調 1 291
## 15101 https://udn.com/news/story/7331/4737312 從未 1 291
## 15102 https://udn.com/news/story/7331/4737312 推特上 1 291
## 15103 https://udn.com/news/story/7331/4737312 推進 1 291
## 15104 https://udn.com/news/story/7331/4737312 敘利亞 1 291
## 15105 https://udn.com/news/story/7331/4737312 條約 1 291
## 15106 https://udn.com/news/story/7331/4737312 清楚 1 291
## 15107 https://udn.com/news/story/7331/4737312 符合 1 291
## 15108 https://udn.com/news/story/7331/4737312 組織 1 291
## 15109 https://udn.com/news/story/7331/4737312 規定 1 291
## 15110 https://udn.com/news/story/7331/4737312 透過 1 291
## 15111 https://udn.com/news/story/7331/4737312 這片 1 291
## 15112 https://udn.com/news/story/7331/4737312 這件 1 291
## 15113 https://udn.com/news/story/7331/4737312 這裡 1 291
## 15114 https://udn.com/news/story/7331/4737312 造成 1 291
## 15115 https://udn.com/news/story/7331/4737312 連續 1 291
## 15116 https://udn.com/news/story/7331/4737312 連續性 1 291
## 15117 https://udn.com/news/story/7331/4737312 堪稱 1 291
## 15118 https://udn.com/news/story/7331/4737312 報導 1 291
## 15119 https://udn.com/news/story/7331/4737312 尊重 1 291
## 15120 https://udn.com/news/story/7331/4737312 發言人 1 291
## 15121 https://udn.com/news/story/7331/4737312 發表 1 291
## 15122 https://udn.com/news/story/7331/4737312 發動 1 291
## 15123 https://udn.com/news/story/7331/4737312 等國 1 291
## 15124 https://udn.com/news/story/7331/4737312 答應 1 291
## 15125 https://udn.com/news/story/7331/4737312 愛好和平 1 291
## 15126 https://udn.com/news/story/7331/4737312 新牌 1 291
## 15127 https://udn.com/news/story/7331/4737312 毀約 1 291
## 15128 https://udn.com/news/story/7331/4737312 盟友 1 291
## 15129 https://udn.com/news/story/7331/4737312 解決 1 291
## 15130 https://udn.com/news/story/7331/4737312 試圖 1 291
## 15131 https://udn.com/news/story/7331/4737312 遏制 1 291
## 15132 https://udn.com/news/story/7331/4737312 達成 1 291
## 15133 https://udn.com/news/story/7331/4737312 違反 1 291
## 15134 https://udn.com/news/story/7331/4737312 違背 1 291
## 15135 https://udn.com/news/story/7331/4737312 鼓動 1 291
## 15136 https://udn.com/news/story/7331/4737312 夥伴 1 291
## 15137 https://udn.com/news/story/7331/4737312 實際上 1 291
## 15138 https://udn.com/news/story/7331/4737312 對此 1 291
## 15139 https://udn.com/news/story/7331/4737312 慣於 1 291
## 15140 https://udn.com/news/story/7331/4737312 維護 1 291
## 15141 https://udn.com/news/story/7331/4737312 緊張 1 291
## 15142 https://udn.com/news/story/7331/4737312 蓄意 1 291
## 15143 https://udn.com/news/story/7331/4737312 說事 1 291
## 15144 https://udn.com/news/story/7331/4737312 領土 1 291
## 15145 https://udn.com/news/story/7331/4737312 履行 1 291
## 15146 https://udn.com/news/story/7331/4737312 數千萬 1 291
## 15147 https://udn.com/news/story/7331/4737312 磋商 1 291
## 15148 https://udn.com/news/story/7331/4737312 締約國 1 291
## 15149 https://udn.com/news/story/7331/4737312 談判 1 291
## 15150 https://udn.com/news/story/7331/4737312 鄰國 1 291
## 15151 https://udn.com/news/story/7331/4737312 儘早 1 291
## 15152 https://udn.com/news/story/7331/4737312 戰爭 1 291
## 15153 https://udn.com/news/story/7331/4737312 機已 1 291
## 15154 https://udn.com/news/story/7331/4737312 機在 1 291
## 15155 https://udn.com/news/story/7331/4737312 歷史事實 1 291
## 15156 https://udn.com/news/story/7331/4737312 謀取 1 291
## 15157 https://udn.com/news/story/7331/4737312 遵循 1 291
## 15158 https://udn.com/news/story/7331/4737312 聲索 1 291
## 15159 https://udn.com/news/story/7331/4737312 擴大 1 291
## 15160 https://udn.com/news/story/7331/4737312 離間 1 291
## 15161 https://udn.com/news/story/7331/4737312 穩定 1 291
## 15162 https://udn.com/news/story/7331/4737312 穩定性 1 291
## 15163 https://udn.com/news/story/7331/4737312 關係 1 291
## 15164 https://udn.com/news/story/7331/4737312 願同 1 291
## 15165 https://udn.com/news/story/7331/4737312 嚴肅認真 1 291
## 15166 https://udn.com/news/story/7331/4737312 艦隊 1 291
## 15167 https://udn.com/news/story/7331/4737312 攪渾 1 291
## 15168 https://udn.com/news/story/7331/4737312 變化 1 291
## 15169 https://udn.com/news/story/7331/4742714 一仗川普 1 396
## 15170 https://udn.com/news/story/7331/4742714 一些 1 396
## 15171 https://udn.com/news/story/7331/4742714 一時 1 396
## 15172 https://udn.com/news/story/7331/4742714 一貫 1 396
## 15173 https://udn.com/news/story/7331/4742714 一道 1 396
## 15174 https://udn.com/news/story/7331/4742714 十多天 1 396
## 15175 https://udn.com/news/story/7331/4742714 三分之二 1 396
## 15176 https://udn.com/news/story/7331/4742714 三國 1 396
## 15177 https://udn.com/news/story/7331/4742714 下旬 1 396
## 15178 https://udn.com/news/story/7331/4742714 川普也並 1 396
## 15179 https://udn.com/news/story/7331/4742714 不可告人 1 396
## 15180 https://udn.com/news/story/7331/4742714 不利於 1 396
## 15181 https://udn.com/news/story/7331/4742714 不是 1 396
## 15182 https://udn.com/news/story/7331/4742714 不敢 1 396
## 15183 https://udn.com/news/story/7331/4742714 不亂 1 396
## 15184 https://udn.com/news/story/7331/4742714 不斷 1 396
## 15185 https://udn.com/news/story/7331/4742714 中美關係 1 396
## 15186 https://udn.com/news/story/7331/4742714 予以 1 396
## 15187 https://udn.com/news/story/7331/4742714 今年以來 1 396
## 15188 https://udn.com/news/story/7331/4742714 元首 1 396
## 15189 https://udn.com/news/story/7331/4742714 內有 1 396
## 15190 https://udn.com/news/story/7331/4742714 公里 1 396
## 15191 https://udn.com/news/story/7331/4742714 公約 1 396
## 15192 https://udn.com/news/story/7331/4742714 公開 1 396
## 15193 https://udn.com/news/story/7331/4742714 分別 1 396
## 15194 https://udn.com/news/story/7331/4742714 反潛巡邏機 1 396
## 15195 https://udn.com/news/story/7331/4742714 日本 1 396
## 15196 https://udn.com/news/story/7331/4742714 日前 1 396
## 15197 https://udn.com/news/story/7331/4742714 王毅 1 396
## 15198 https://udn.com/news/story/7331/4742714 主要用途 1 396
## 15199 https://udn.com/news/story/7331/4742714 主權 1 396
## 15200 https://udn.com/news/story/7331/4742714 出現 1 396
## 15201 https://udn.com/news/story/7331/4742714 另有 1 396
## 15202 https://udn.com/news/story/7331/4742714 外交部 1 396
## 15203 https://udn.com/news/story/7331/4742714 外有 1 396
## 15204 https://udn.com/news/story/7331/4742714 外國 1 396
## 15205 https://udn.com/news/story/7331/4742714 打一仗 1 396
## 15206 https://udn.com/news/story/7331/4742714 打法 1 396
## 15207 https://udn.com/news/story/7331/4742714 生產 1 396
## 15208 https://udn.com/news/story/7331/4742714 用於 1 396
## 15209 https://udn.com/news/story/7331/4742714 目的 1 396
## 15210 https://udn.com/news/story/7331/4742714 立場 1 396
## 15211 https://udn.com/news/story/7331/4742714 共同 1 396
## 15212 https://udn.com/news/story/7331/4742714 各方 1 396
## 15213 https://udn.com/news/story/7331/4742714 回擊 1 396
## 15214 https://udn.com/news/story/7331/4742714 在內 1 396
## 15215 https://udn.com/news/story/7331/4742714 地區 1 396
## 15216 https://udn.com/news/story/7331/4742714 有必 1 396
## 15217 https://udn.com/news/story/7331/4742714 至今 1 396
## 15218 https://udn.com/news/story/7331/4742714 至少 1 396
## 15219 https://udn.com/news/story/7331/4742714 判斷 1 396
## 15220 https://udn.com/news/story/7331/4742714 利益 1 396
## 15221 https://udn.com/news/story/7331/4742714 把雙 1 396
## 15222 https://udn.com/news/story/7331/4742714 沒有 1 396
## 15223 https://udn.com/news/story/7331/4742714 究竟 1 396
## 15224 https://udn.com/news/story/7331/4742714 事情 1 396
## 15225 https://udn.com/news/story/7331/4742714 例行 1 396
## 15226 https://udn.com/news/story/7331/4742714 協商 1 396
## 15227 https://udn.com/news/story/7331/4742714 取代 1 396
## 15228 https://udn.com/news/story/7331/4742714 和平 1 396
## 15229 https://udn.com/news/story/7331/4742714 始終 1 396
## 15230 https://udn.com/news/story/7331/4742714 所有 1 396
## 15231 https://udn.com/news/story/7331/4742714 沿岸國 1 396
## 15232 https://udn.com/news/story/7331/4742714 法國 1 396
## 15233 https://udn.com/news/story/7331/4742714 爭取 1 396
## 15234 https://udn.com/news/story/7331/4742714 爭議 1 396
## 15235 https://udn.com/news/story/7331/4742714 表示 1 396
## 15236 https://udn.com/news/story/7331/4742714 表明 1 396
## 15237 https://udn.com/news/story/7331/4742714 保持 1 396
## 15238 https://udn.com/news/story/7331/4742714 南部 1 396
## 15239 https://udn.com/news/story/7331/4742714 型號 1 396
## 15240 https://udn.com/news/story/7331/4742714 宣言 1 396
## 15241 https://udn.com/news/story/7331/4742714 恪守 1 396
## 15242 https://udn.com/news/story/7331/4742714 政策 1 396
## 15243 https://udn.com/news/story/7331/4742714 美方 1 396
## 15244 https://udn.com/news/story/7331/4742714 美國波音公司 1 396
## 15245 https://udn.com/news/story/7331/4742714 要說 1 396
## 15246 https://udn.com/news/story/7331/4742714 計劃 1 396
## 15247 https://udn.com/news/story/7331/4742714 軍艦 1 396
## 15248 https://udn.com/news/story/7331/4742714 飛機 1 396
## 15249 https://udn.com/news/story/7331/4742714 香港 1 396
## 15250 https://udn.com/news/story/7331/4742714 個彈 1 396
## 15251 https://udn.com/news/story/7331/4742714 恐怕 1 396
## 15252 https://udn.com/news/story/7331/4742714 海上巡邏 1 396
## 15253 https://udn.com/news/story/7331/4742714 海洋法 1 396
## 15254 https://udn.com/news/story/7331/4742714 海洋權益 1 396
## 15255 https://udn.com/news/story/7331/4742714 海神 1 396
## 15256 https://udn.com/news/story/7331/4742714 消息 1 396
## 15257 https://udn.com/news/story/7331/4742714 真打 1 396
## 15258 https://udn.com/news/story/7331/4742714 真的 1 396
## 15259 https://udn.com/news/story/7331/4742714 航母 1 396
## 15260 https://udn.com/news/story/7331/4742714 記者會 1 396
## 15261 https://udn.com/news/story/7331/4742714 起舞 1 396
## 15262 https://udn.com/news/story/7331/4742714 動作 1 396
## 15263 https://udn.com/news/story/7331/4742714 唯恐 1 396
## 15264 https://udn.com/news/story/7331/4742714 問題 1 396
## 15265 https://udn.com/news/story/7331/4742714 基礎 1 396
## 15266 https://udn.com/news/story/7331/4742714 堅持 1 396
## 15267 https://udn.com/news/story/7331/4742714 得分 1 396
## 15268 https://udn.com/news/story/7331/4742714 得逞 1 396
## 15269 https://udn.com/news/story/7331/4742714 從未 1 396
## 15270 https://udn.com/news/story/7331/4742714 情況 1 396
## 15271 https://udn.com/news/story/7331/4742714 掛點 1 396
## 15272 https://udn.com/news/story/7331/4742714 探測 1 396
## 15273 https://udn.com/news/story/7331/4742714 推進 1 396
## 15274 https://udn.com/news/story/7331/4742714 措施 1 396
## 15275 https://udn.com/news/story/7331/4742714 清楚 1 396
## 15276 https://udn.com/news/story/7331/4742714 符合 1 396
## 15277 https://udn.com/news/story/7331/4742714 規定 1 396
## 15278 https://udn.com/news/story/7331/4742714 設計 1 396
## 15279 https://udn.com/news/story/7331/4742714 透過 1 396
## 15280 https://udn.com/news/story/7331/4742714 這片 1 396
## 15281 https://udn.com/news/story/7331/4742714 通話 1 396
## 15282 https://udn.com/news/story/7331/4742714 通電話 1 396
## 15283 https://udn.com/news/story/7331/4742714 連續性 1 396
## 15284 https://udn.com/news/story/7331/4742714 魚雷 1 396
## 15285 https://udn.com/news/story/7331/4742714 尊重 1 396
## 15286 https://udn.com/news/story/7331/4742714 發布 1 396
## 15287 https://udn.com/news/story/7331/4742714 發言人 1 396
## 15288 https://udn.com/news/story/7331/4742714 發射 1 396
## 15289 https://udn.com/news/story/7331/4742714 感知 1 396
## 15290 https://udn.com/news/story/7331/4742714 新一代 1 396
## 15291 https://udn.com/news/story/7331/4742714 新疆 1 396
## 15292 https://udn.com/news/story/7331/4742714 會視 1 396
## 15293 https://udn.com/news/story/7331/4742714 盟友 1 396
## 15294 https://udn.com/news/story/7331/4742714 解決 1 396
## 15295 https://udn.com/news/story/7331/4742714 達成 1 396
## 15296 https://udn.com/news/story/7331/4742714 鼓動 1 396
## 15297 https://udn.com/news/story/7331/4742714 圖謀 1 396
## 15298 https://udn.com/news/story/7331/4742714 夥伴 1 396
## 15299 https://udn.com/news/story/7331/4742714 態度 1 396
## 15300 https://udn.com/news/story/7331/4742714 態勢 1 396
## 15301 https://udn.com/news/story/7331/4742714 認為 1 396
## 15302 https://udn.com/news/story/7331/4742714 領土 1 396
## 15303 https://udn.com/news/story/7331/4742714 領導人 1 396
## 15304 https://udn.com/news/story/7331/4742714 履行 1 396
## 15305 https://udn.com/news/story/7331/4742714 德國 1 396
## 15306 https://udn.com/news/story/7331/4742714 磋商 1 396
## 15307 https://udn.com/news/story/7331/4742714 調查 1 396
## 15308 https://udn.com/news/story/7331/4742714 談判 1 396
## 15309 https://udn.com/news/story/7331/4742714 鄰國 1 396
## 15310 https://udn.com/news/story/7331/4742714 儘早 1 396
## 15311 https://udn.com/news/story/7331/4742714 戰略 1 396
## 15312 https://udn.com/news/story/7331/4742714 機在 1 396
## 15313 https://udn.com/news/story/7331/4742714 歷史事實 1 396
## 15314 https://udn.com/news/story/7331/4742714 遵循 1 396
## 15315 https://udn.com/news/story/7331/4742714 選擇 1 396
## 15316 https://udn.com/news/story/7331/4742714 選舉 1 396
## 15317 https://udn.com/news/story/7331/4742714 頻繁 1 396
## 15318 https://udn.com/news/story/7331/4742714 應對 1 396
## 15319 https://udn.com/news/story/7331/4742714 環球時報 1 396
## 15320 https://udn.com/news/story/7331/4742714 聯合國 1 396
## 15321 https://udn.com/news/story/7331/4742714 聲索 1 396
## 15322 https://udn.com/news/story/7331/4742714 擴大 1 396
## 15323 https://udn.com/news/story/7331/4742714 穩定性 1 396
## 15324 https://udn.com/news/story/7331/4742714 贊成 1 396
## 15325 https://udn.com/news/story/7331/4742714 難以解決 1 396
## 15326 https://udn.com/news/story/7331/4742714 願同 1 396
## 15327 https://udn.com/news/story/7331/4742714 願意 1 396
## 15328 https://udn.com/news/story/7331/4742714 嚴肅認真 1 396
## 15329 https://udn.com/news/story/7331/4742714 艦隊 1 396
## 15330 https://udn.com/news/story/7331/4742714 變化 1 396
## 15331 https://udn.com/news/story/7331/4742714 顯示 1 396
## 15332 https://udn.com/news/story/7331/4751677 一次 1 138
## 15333 https://udn.com/news/story/7331/4751677 大幅 1 138
## 15334 https://udn.com/news/story/7331/4751677 小型 1 138
## 15335 https://udn.com/news/story/7331/4751677 不在 1 138
## 15336 https://udn.com/news/story/7331/4751677 分析 1 138
## 15337 https://udn.com/news/story/7331/4751677 升空 1 138
## 15338 https://udn.com/news/story/7331/4751677 以外 1 138
## 15339 https://udn.com/news/story/7331/4751677 出動 1 138
## 15340 https://udn.com/news/story/7331/4751677 北京大學 1 138
## 15341 https://udn.com/news/story/7331/4751677 尼米茲 1 138
## 15342 https://udn.com/news/story/7331/4751677 多達 1 138
## 15343 https://udn.com/news/story/7331/4751677 考慮 1 138
## 15344 https://udn.com/news/story/7331/4751677 行動 1 138
## 15345 https://udn.com/news/story/7331/4751677 系列 1 138
## 15346 https://udn.com/news/story/7331/4751677 並非 1 138
## 15347 https://udn.com/news/story/7331/4751677 兩倍 1 138
## 15348 https://udn.com/news/story/7331/4751677 所有 1 138
## 15349 https://udn.com/news/story/7331/4751677 明顯 1 138
## 15350 https://udn.com/news/story/7331/4751677 空中 1 138
## 15351 https://udn.com/news/story/7331/4751677 空軍 1 138
## 15352 https://udn.com/news/story/7331/4751677 表示 1 138
## 15353 https://udn.com/news/story/7331/4751677 非常規 1 138
## 15354 https://udn.com/news/story/7331/4751677 型號 1 138
## 15355 https://udn.com/news/story/7331/4751677 指揮 1 138
## 15356 https://udn.com/news/story/7331/4751677 研究院 1 138
## 15357 https://udn.com/news/story/7331/4751677 美軍 1 138
## 15358 https://udn.com/news/story/7331/4751677 軍機 1 138
## 15359 https://udn.com/news/story/7331/4751677 時至 1 138
## 15360 https://udn.com/news/story/7331/4751677 時間 1 138
## 15361 https://udn.com/news/story/7331/4751677 海洋 1 138
## 15362 https://udn.com/news/story/7331/4751677 消息 1 138
## 15363 https://udn.com/news/story/7331/4751677 烈度 1 138
## 15364 https://udn.com/news/story/7331/4751677 真實 1 138
## 15365 https://udn.com/news/story/7331/4751677 航母 1 138
## 15366 https://udn.com/news/story/7331/4751677 起飛 1 138
## 15367 https://udn.com/news/story/7331/4751677 涵蓋 1 138
## 15368 https://udn.com/news/story/7331/4751677 累計 1 138
## 15369 https://udn.com/news/story/7331/4751677 統計 1 138
## 15370 https://udn.com/news/story/7331/4751677 這一 1 138
## 15371 https://udn.com/news/story/7331/4751677 報導 1 138
## 15372 https://udn.com/news/story/7331/4751677 幾乎 1 138
## 15373 https://udn.com/news/story/7331/4751677 掌握 1 138
## 15374 https://udn.com/news/story/7331/4751677 提取 1 138
## 15375 https://udn.com/news/story/7331/4751677 最近 1 138
## 15376 https://udn.com/news/story/7331/4751677 期間 1 138
## 15377 https://udn.com/news/story/7331/4751677 無人 1 138
## 15378 https://udn.com/news/story/7331/4751677 發布 1 138
## 15379 https://udn.com/news/story/7331/4751677 距離 1 138
## 15380 https://udn.com/news/story/7331/4751677 開展 1 138
## 15381 https://udn.com/news/story/7331/4751677 開啟 1 138
## 15382 https://udn.com/news/story/7331/4751677 號在 1 138
## 15383 https://udn.com/news/story/7331/4751677 號和 1 138
## 15384 https://udn.com/news/story/7331/4751677 過程 1 138
## 15385 https://udn.com/news/story/7331/4751677 雷根 1 138
## 15386 https://udn.com/news/story/7331/4751677 預警機 1 138
## 15387 https://udn.com/news/story/7331/4751677 實施 1 138
## 15388 https://udn.com/news/story/7331/4751677 演習 1 138
## 15389 https://udn.com/news/story/7331/4751677 監視 1 138
## 15390 https://udn.com/news/story/7331/4751677 緊急 1 138
## 15391 https://udn.com/news/story/7331/4751677 增強 1 138
## 15392 https://udn.com/news/story/7331/4751677 數目 1 138
## 15393 https://udn.com/news/story/7331/4751677 數字 1 138
## 15394 https://udn.com/news/story/7331/4751677 數據 1 138
## 15395 https://udn.com/news/story/7331/4751677 餘海里 1 138
## 15396 https://udn.com/news/story/7331/4751677 戰場 1 138
## 15397 https://udn.com/news/story/7331/4751677 機及 1 138
## 15398 https://udn.com/news/story/7331/4751677 遺漏 1 138
## 15399 https://udn.com/news/story/7331/4751677 頻率 1 138
## 15400 https://udn.com/news/story/7331/4751677 應答器 1 138
## 15401 https://udn.com/news/story/7331/4751677 環球網 1 138
## 15402 https://udn.com/news/story/7331/4751677 總計 1 138
## 15403 https://udn.com/news/story/7331/4751677 舉行 1 138
## 15404 https://udn.com/news/story/7331/4751677 還稱 1 138
## 15405 https://udn.com/news/story/7331/4751677 顯著 1 138
## 15406 https://udn.com/news/story/7331/4752420 一種 1 45
## 15407 https://udn.com/news/story/7331/4752420 了解 1 45
## 15408 https://udn.com/news/story/7331/4752420 才能 1 45
## 15409 https://udn.com/news/story/7331/4752420 中國人民解放軍 1 45
## 15410 https://udn.com/news/story/7331/4752420 分鐘 1 45
## 15411 https://udn.com/news/story/7331/4752420 出現 1 45
## 15412 https://udn.com/news/story/7331/4752420 此次 1 45
## 15413 https://udn.com/news/story/7331/4752420 考驗 1 45
## 15414 https://udn.com/news/story/7331/4752420 每架 1 45
## 15415 https://udn.com/news/story/7331/4752420 見到 1 45
## 15416 https://udn.com/news/story/7331/4752420 空中 1 45
## 15417 https://udn.com/news/story/7331/4752420 空中加油 1 45
## 15418 https://udn.com/news/story/7331/4752420 空軍航空兵 1 45
## 15419 https://udn.com/news/story/7331/4752420 空域 1 45
## 15420 https://udn.com/news/story/7331/4752420 近日 1 45
## 15421 https://udn.com/news/story/7331/4752420 長途跋涉 1 45
## 15422 https://udn.com/news/story/7331/4752420 南部 1 45
## 15423 https://udn.com/news/story/7331/4752420 某部 1 45
## 15424 https://udn.com/news/story/7331/4752420 相關 1 45
## 15425 https://udn.com/news/story/7331/4752420 飛行 1 45
## 15426 https://udn.com/news/story/7331/4752420 飛行員 1 45
## 15427 https://udn.com/news/story/7331/4752420 飛抵 1 45
## 15428 https://udn.com/news/story/7331/4752420 海客 1 45
## 15429 https://udn.com/news/story/7331/4752420 能力 1 45
## 15430 https://udn.com/news/story/7331/4752420 起飛 1 45
## 15431 https://udn.com/news/story/7331/4752420 掛彈 1 45
## 15432 https://udn.com/news/story/7331/4752420 畫面 1 45
## 15433 https://udn.com/news/story/7331/4752420 間隔 1 45
## 15434 https://udn.com/news/story/7331/4752420 雲海 1 45
## 15435 https://udn.com/news/story/7331/4752420 意志 1 45
## 15436 https://udn.com/news/story/7331/4752420 新聞報導 1 45
## 15437 https://udn.com/news/story/7331/4752420 該部 1 45
## 15438 https://udn.com/news/story/7331/4752420 碧島 1 45
## 15439 https://udn.com/news/story/7331/4752420 需要 1 45
## 15440 https://udn.com/news/story/7331/4752420 影片 1 45
## 15441 https://udn.com/news/story/7331/4752420 駐地 1 45
## 15442 https://udn.com/news/story/7331/4752420 戰友 1 45
## 15443 https://udn.com/news/story/7331/4752420 戰區 1 45
## 15444 https://udn.com/news/story/7331/4752420 隱身 1 45
## 15445 https://udn.com/news/story/7331/4785688 一名 1 121
## 15446 https://udn.com/news/story/7331/4785688 一聲令下 1 121
## 15447 https://udn.com/news/story/7331/4785688 人士 1 121
## 15448 https://udn.com/news/story/7331/4785688 人權 1 121
## 15449 https://udn.com/news/story/7331/4785688 入水 1 121
## 15450 https://udn.com/news/story/7331/4785688 十日 1 121
## 15451 https://udn.com/news/story/7331/4785688 大隊 1 121
## 15452 https://udn.com/news/story/7331/4785688 中國 1 121
## 15453 https://udn.com/news/story/7331/4785688 之際 1 121
## 15454 https://udn.com/news/story/7331/4785688 反制 1 121
## 15455 https://udn.com/news/story/7331/4785688 引發 1 121
## 15456 https://udn.com/news/story/7331/4785688 方面 1 121
## 15457 https://udn.com/news/story/7331/4785688 日前 1 121
## 15458 https://udn.com/news/story/7331/4785688 包括 1 121
## 15459 https://udn.com/news/story/7331/4785688 半官方 1 121
## 15460 https://udn.com/news/story/7331/4785688 台灣 1 121
## 15461 https://udn.com/news/story/7331/4785688 外交 1 121
## 15462 https://udn.com/news/story/7331/4785688 正值 1 121
## 15463 https://udn.com/news/story/7331/4785688 正當中 1 121
## 15464 https://udn.com/news/story/7331/4785688 共軍 1 121
## 15465 https://udn.com/news/story/7331/4785688 此前 1 121
## 15466 https://udn.com/news/story/7331/4785688 佔位 1 121
## 15467 https://udn.com/news/story/7331/4785688 角力 1 121
## 15468 https://udn.com/news/story/7331/4785688 迅猛 1 121
## 15469 https://udn.com/news/story/7331/4785688 迅速 1 121
## 15470 https://udn.com/news/story/7331/4785688 命中 1 121
## 15471 https://udn.com/news/story/7331/4785688 官員 1 121
## 15472 https://udn.com/news/story/7331/4785688 官媒 1 121
## 15473 https://udn.com/news/story/7331/4785688 近日 1 121
## 15474 https://udn.com/news/story/7331/4785688 近期 1 121
## 15475 https://udn.com/news/story/7331/4785688 非營利 1 121
## 15476 https://udn.com/news/story/7331/4785688 亮劍 1 121
## 15477 https://udn.com/news/story/7331/4785688 宣布 1 121
## 15478 https://udn.com/news/story/7331/4785688 指令 1 121
## 15479 https://udn.com/news/story/7331/4785688 相互 1 121
## 15480 https://udn.com/news/story/7331/4785688 科目 1 121
## 15481 https://udn.com/news/story/7331/4785688 美在 1 121
## 15482 https://udn.com/news/story/7331/4785688 美國 1 121
## 15483 https://udn.com/news/story/7331/4785688 負責人 1 121
## 15484 https://udn.com/news/story/7331/4785688 軍演 1 121
## 15485 https://udn.com/news/story/7331/4785688 格外 1 121
## 15486 https://udn.com/news/story/7331/4785688 海上 1 121
## 15487 https://udn.com/news/story/7331/4785688 海域 1 121
## 15488 https://udn.com/news/story/7331/4785688 特首 1 121
## 15489 https://udn.com/news/story/7331/4785688 訓練 1 121
## 15490 https://udn.com/news/story/7331/4785688 針對 1 121
## 15491 https://udn.com/news/story/7331/4785688 參議員 1 121
## 15492 https://udn.com/news/story/7331/4785688 國安法 1 121
## 15493 https://udn.com/news/story/7331/4785688 掀起 1 121
## 15494 https://udn.com/news/story/7331/4785688 接到 1 121
## 15495 https://udn.com/news/story/7331/4785688 祭出 1 121
## 15496 https://udn.com/news/story/7331/4785688 組織 1 121
## 15497 https://udn.com/news/story/7331/4785688 部隊 1 121
## 15498 https://udn.com/news/story/7331/4785688 魚雷 1 121
## 15499 https://udn.com/news/story/7331/4785688 備便 1 121
## 15500 https://udn.com/news/story/7331/4785688 場域 1 121
## 15501 https://udn.com/news/story/7331/4785688 惠州 1 121
## 15502 https://udn.com/news/story/7331/4785688 提到 1 121
## 15503 https://udn.com/news/story/7331/4785688 港版 1 121
## 15504 https://udn.com/news/story/7331/4785688 搜索 1 121
## 15505 https://udn.com/news/story/7331/4785688 經貿 1 121
## 15506 https://udn.com/news/story/7331/4785688 較勁 1 121
## 15507 https://udn.com/news/story/7331/4785688 精準 1 121
## 15508 https://udn.com/news/story/7331/4785688 緊急 1 121
## 15509 https://udn.com/news/story/7331/4785688 潛艇 1 121
## 15510 https://udn.com/news/story/7331/4785688 鄭月 1 121
## 15511 https://udn.com/news/story/7331/4785688 駐港部隊 1 121
## 15512 https://udn.com/news/story/7331/4785688 機構 1 121
## 15513 https://udn.com/news/story/7331/4785688 隨即 1 121
## 15514 https://udn.com/news/story/7331/4785688 擊沉 1 121
## 15515 https://udn.com/news/story/7331/4785688 聯邦 1 121
## 15516 https://udn.com/news/story/7331/4785688 聲納 1 121
## 15517 https://udn.com/news/story/7331/4785688 關注 1 121
## 15518 https://udn.com/news/story/7331/4785688 艦長 1 121
## 15519 https://udn.com/news/story/7331/4785688 議員 1 121
## 15520 https://udn.com/news/story/7331/4785688 議題 1 121
## 15521 https://udn.com/news/story/7331/4785688 齟齬 1 121
## 15522 https://udn.com/news/story/7331/4803877 一連串 1 157
## 15523 https://udn.com/news/story/7331/4803877 大片 1 157
## 15524 https://udn.com/news/story/7331/4803877 大型 1 157
## 15525 https://udn.com/news/story/7331/4803877 大陸 1 157
## 15526 https://udn.com/news/story/7331/4803877 山東 1 157
## 15527 https://udn.com/news/story/7331/4803877 之後 1 157
## 15528 https://udn.com/news/story/7331/4803877 今天 1 157
## 15529 https://udn.com/news/story/7331/4803877 公里 1 157
## 15530 https://udn.com/news/story/7331/4803877 分別 1 157
## 15531 https://udn.com/news/story/7331/4803877 方向 1 157
## 15532 https://udn.com/news/story/7331/4803877 以下 1 157
## 15533 https://udn.com/news/story/7331/4803877 以外 1 157
## 15534 https://udn.com/news/story/7331/4803877 半徑 1 157
## 15535 https://udn.com/news/story/7331/4803877 台灣 1 157
## 15536 https://udn.com/news/story/7331/4803877 四點 1 157
## 15537 https://udn.com/news/story/7331/4803877 本月 1 157
## 15538 https://udn.com/news/story/7331/4803877 正東 1 157
## 15539 https://udn.com/news/story/7331/4803877 正南 1 157
## 15540 https://udn.com/news/story/7331/4803877 此前 1 157
## 15541 https://udn.com/news/story/7331/4803877 肌肉 1 157
## 15542 https://udn.com/news/story/7331/4803877 坐標 1 157
## 15543 https://udn.com/news/story/7331/4803877 夾角 1 157
## 15544 https://udn.com/news/story/7331/4803877 兩端 1 157
## 15545 https://udn.com/news/story/7331/4803877 東部 1 157
## 15546 https://udn.com/news/story/7331/4803877 南北 1 157
## 15547 https://udn.com/news/story/7331/4803877 指出 1 157
## 15548 https://udn.com/news/story/7331/4803877 軍種 1 157
## 15549 https://udn.com/news/story/7331/4803877 唐山 1 157
## 15550 https://udn.com/news/story/7331/4803877 展開 1 157
## 15551 https://udn.com/news/story/7331/4803877 海南 1 157
## 15552 https://udn.com/news/story/7331/4803877 海峽 1 157
## 15553 https://udn.com/news/story/7331/4803877 消息 1 157
## 15554 https://udn.com/news/story/7331/4803877 能力 1 157
## 15555 https://udn.com/news/story/7331/4803877 偏西 1 157
## 15556 https://udn.com/news/story/7331/4803877 國土 1 157
## 15557 https://udn.com/news/story/7331/4803877 基點 1 157
## 15558 https://udn.com/news/story/7331/4803877 將於 1 157
## 15559 https://udn.com/news/story/7331/4803877 接連 1 157
## 15560 https://udn.com/news/story/7331/4803877 船舶 1 157
## 15561 https://udn.com/news/story/7331/4803877 連線 1 157
## 15562 https://udn.com/news/story/7331/4803877 連續 1 157
## 15563 https://udn.com/news/story/7331/4803877 頂點 1 157
## 15564 https://udn.com/news/story/7331/4803877 提升 1 157
## 15565 https://udn.com/news/story/7331/4803877 進一步 1 157
## 15566 https://udn.com/news/story/7331/4803877 新聞 1 157
## 15567 https://udn.com/news/story/7331/4803877 當局 1 157
## 15568 https://udn.com/news/story/7331/4803877 禁止 1 157
## 15569 https://udn.com/news/story/7331/4803877 過往 1 157
## 15570 https://udn.com/news/story/7331/4803877 零時 1 157
## 15571 https://udn.com/news/story/7331/4803877 實戰 1 157
## 15572 https://udn.com/news/story/7331/4803877 演習 1 157
## 15573 https://udn.com/news/story/7331/4803877 演練 1 157
## 15574 https://udn.com/news/story/7331/4803877 網站 1 157
## 15575 https://udn.com/news/story/7331/4803877 廣東 1 157
## 15576 https://udn.com/news/story/7331/4803877 澎湃 1 157
## 15577 https://udn.com/news/story/7331/4803877 駛入 1 157
## 15578 https://udn.com/news/story/7331/4803877 冀航警 1 157
## 15579 https://udn.com/news/story/7331/4803877 戰區 1 157
## 15580 https://udn.com/news/story/7331/4803877 頻頻 1 157
## 15581 https://udn.com/news/story/7331/4803877 檢驗 1 157
## 15582 https://udn.com/news/story/7331/4803877 聯合作戰 1 157
## 15583 https://udn.com/news/story/7331/4803877 還將 1 157
## 15584 https://udn.com/news/story/7331/4813671 上周 1 140
## 15585 https://udn.com/news/story/7331/4813671 上述 1 140
## 15586 https://udn.com/news/story/7331/4813671 大陸 1 140
## 15587 https://udn.com/news/story/7331/4813671 中程 1 140
## 15588 https://udn.com/news/story/7331/4813671 今次 1 140
## 15589 https://udn.com/news/story/7331/4813671 介入 1 140
## 15590 https://udn.com/news/story/7331/4813671 公布 1 140
## 15591 https://udn.com/news/story/7331/4813671 引述 1 140
## 15592 https://udn.com/news/story/7331/4813671 日向 1 140
## 15593 https://udn.com/news/story/7331/4813671 水域 1 140
## 15594 https://udn.com/news/story/7331/4813671 包括 1 140
## 15595 https://udn.com/news/story/7331/4813671 台灣 1 140
## 15596 https://udn.com/news/story/7331/4813671 外軍 1 140
## 15597 https://udn.com/news/story/7331/4813671 外號 1 140
## 15598 https://udn.com/news/story/7331/4813671 打擊 1 140
## 15599 https://udn.com/news/story/7331/4813671 本周一 1 140
## 15600 https://udn.com/news/story/7331/4813671 回應 1 140
## 15601 https://udn.com/news/story/7331/4813671 旨在 1 140
## 15602 https://udn.com/news/story/7331/4813671 至少 1 140
## 15603 https://udn.com/news/story/7331/4813671 西沙 1 140
## 15604 https://udn.com/news/story/7331/4813671 西部 1 140
## 15605 https://udn.com/news/story/7331/4813671 作用 1 140
## 15606 https://udn.com/news/story/7331/4813671 坊間 1 140
## 15607 https://udn.com/news/story/7331/4813671 快遞 1 140
## 15608 https://udn.com/news/story/7331/4813671 並不 1 140
## 15609 https://udn.com/news/story/7331/4813671 周六 1 140
## 15610 https://udn.com/news/story/7331/4813671 周邊 1 140
## 15611 https://udn.com/news/story/7331/4813671 明言 1 140
## 15612 https://udn.com/news/story/7331/4813671 明確 1 140
## 15613 https://udn.com/news/story/7331/4813671 表示 1 140
## 15614 https://udn.com/news/story/7331/4813671 阻止 1 140
## 15615 https://udn.com/news/story/7331/4813671 青海省 1 140
## 15616 https://udn.com/news/story/7331/4813671 俗稱 1 140
## 15617 https://udn.com/news/story/7331/4813671 則從 1 140
## 15618 https://udn.com/news/story/7331/4813671 南華早報 1 140
## 15619 https://udn.com/news/story/7331/4813671 美軍基地 1 140
## 15620 https://udn.com/news/story/7331/4813671 軍事 1 140
## 15621 https://udn.com/news/story/7331/4813671 軍機 1 140
## 15622 https://udn.com/news/story/7331/4813671 軍艦 1 140
## 15623 https://udn.com/news/story/7331/4813671 風險 1 140
## 15624 https://udn.com/news/story/7331/4813671 首款 1 140
## 15625 https://udn.com/news/story/7331/4813671 香港 1 140
## 15626 https://udn.com/news/story/7331/4813671 俱有 1 140
## 15627 https://udn.com/news/story/7331/4813671 兼具 1 140
## 15628 https://udn.com/news/story/7331/4813671 兼備 1 140
## 15629 https://udn.com/news/story/7331/4813671 展示 1 140
## 15630 https://udn.com/news/story/7331/4813671 核常 1 140
## 15631 https://udn.com/news/story/7331/4813671 核彈頭 1 140
## 15632 https://udn.com/news/story/7331/4813671 浙江省 1 140
## 15633 https://udn.com/news/story/7331/4813671 海事局 1 140
## 15634 https://udn.com/news/story/7331/4813671 海南 1 140
## 15635 https://udn.com/news/story/7331/4813671 海南島 1 140
## 15636 https://udn.com/news/story/7331/4813671 訊號 1 140
## 15637 https://udn.com/news/story/7331/4813671 針對 1 140
## 15638 https://udn.com/news/story/7331/4813671 帶來 1 140
## 15639 https://udn.com/news/story/7331/4813671 常規 1 140
## 15640 https://udn.com/news/story/7331/4813671 從中 1 140
## 15641 https://udn.com/news/story/7331/4813671 這是 1 140
## 15642 https://udn.com/news/story/7331/4813671 報導 1 140
## 15643 https://udn.com/news/story/7331/4813671 期間 1 140
## 15644 https://udn.com/news/story/7331/4813671 發出 1 140
## 15645 https://udn.com/news/story/7331/4813671 菲律賓海 1 140
## 15646 https://udn.com/news/story/7331/4813671 進入 1 140
## 15647 https://udn.com/news/story/7331/4813671 禁航區 1 140
## 15648 https://udn.com/news/story/7331/4813671 群島 1 140
## 15649 https://udn.com/news/story/7331/4813671 落入 1 140
## 15650 https://udn.com/news/story/7331/4813671 預定 1 140
## 15651 https://udn.com/news/story/7331/4813671 劃出 1 140
## 15652 https://udn.com/news/story/7331/4813671 潛在 1 140
## 15653 https://udn.com/news/story/7331/4813671 鄰國 1 140
## 15654 https://udn.com/news/story/7331/4813671 戰略戰術 1 140
## 15655 https://udn.com/news/story/7331/4813671 頻繁 1 140
## 15656 https://udn.com/news/story/7331/4813671 舉行 1 140
## 15657 https://udn.com/news/story/7331/4813671 覆蓋 1 140
## 15658 https://udn.com/news/story/7331/4813671 警告 1 140
## 15659 https://udn.com/news/story/7331/4813671 攜帶 1 140
## 15660 https://udn.com/news/story/7331/4814984 人工島 1 91
## 15661 https://udn.com/news/story/7331/4814984 大陸 1 91
## 15662 https://udn.com/news/story/7331/4814984 主權 1 91
## 15663 https://udn.com/news/story/7331/4814984 立即 1 91
## 15664 https://udn.com/news/story/7331/4814984 列入 1 91
## 15665 https://udn.com/news/story/7331/4814984 合法權益 1 91
## 15666 https://udn.com/news/story/7331/4814984 合理合法 1 91
## 15667 https://udn.com/news/story/7331/4814984 此舉 1 91
## 15668 https://udn.com/news/story/7331/4814984 並會 1 91
## 15669 https://udn.com/news/story/7331/4814984 例行 1 91
## 15670 https://udn.com/news/story/7331/4814984 協助 1 91
## 15671 https://udn.com/news/story/7331/4814984 糾正錯誤 1 91
## 15672 https://udn.com/news/story/7331/4814984 表示 1 91
## 15673 https://udn.com/news/story/7331/4814984 非法 1 91
## 15674 https://udn.com/news/story/7331/4814984 建島 1 91
## 15675 https://udn.com/news/story/7331/4814984 指出 1 91
## 15676 https://udn.com/news/story/7331/4814984 活動 1 91
## 15677 https://udn.com/news/story/7331/4814984 美國 1 91
## 15678 https://udn.com/news/story/7331/4814984 軍方 1 91
## 15679 https://udn.com/news/story/7331/4814984 修建 1 91
## 15680 https://udn.com/news/story/7331/4814984 個人 1 91
## 15681 https://udn.com/news/story/7331/4814984 記者會 1 91
## 15682 https://udn.com/news/story/7331/4814984 針對 1 91
## 15683 https://udn.com/news/story/7331/4814984 停止 1 91
## 15684 https://udn.com/news/story/7331/4814984 國際 1 91
## 15685 https://udn.com/news/story/7331/4814984 國際法 1 91
## 15686 https://udn.com/news/story/7331/4814984 強權政治 1 91
## 15687 https://udn.com/news/story/7331/4814984 採取相應 1 91
## 15688 https://udn.com/news/story/7331/4814984 措施 1 91
## 15689 https://udn.com/news/story/7331/4814984 毫無道理 1 91
## 15690 https://udn.com/news/story/7331/4814984 清單 1 91
## 15691 https://udn.com/news/story/7331/4814984 粗暴 1 91
## 15692 https://udn.com/news/story/7331/4814984 敦促 1 91
## 15693 https://udn.com/news/story/7331/4814984 無可厚非 1 91
## 15694 https://udn.com/news/story/7331/4814984 無關 1 91
## 15695 https://udn.com/news/story/7331/4814984 發言人 1 91
## 15696 https://udn.com/news/story/7331/4814984 開展 1 91
## 15697 https://udn.com/news/story/7331/4814984 準則 1 91
## 15698 https://udn.com/news/story/7331/4814984 違反 1 91
## 15699 https://udn.com/news/story/7331/4814984 實施 1 91
## 15700 https://udn.com/news/story/7331/4814984 實體 1 91
## 15701 https://udn.com/news/story/7331/4814984 對此 1 91
## 15702 https://udn.com/news/story/7331/4814984 維護 1 91
## 15703 https://udn.com/news/story/7331/4814984 領土 1 91
## 15704 https://udn.com/news/story/7331/4814984 範圍 1 91
## 15705 https://udn.com/news/story/7331/4814984 霸道 1 91
## 15706 https://udn.com/news/story/7331/4814984 邏輯 1 91
## 15707 https://udn.com/news/story/7331/4816369 一些 1 253
## 15708 https://udn.com/news/story/7331/4816369 一線 1 253
## 15709 https://udn.com/news/story/7331/4816369 了解 1 253
## 15710 https://udn.com/news/story/7331/4816369 十分 1 253
## 15711 https://udn.com/news/story/7331/4816369 上升 1 253
## 15712 https://udn.com/news/story/7331/4816369 川普 1 253
## 15713 https://udn.com/news/story/7331/4816369 不測 1 253
## 15714 https://udn.com/news/story/7331/4816369 不斷 1 253
## 15715 https://udn.com/news/story/7331/4816369 不懼 1 253
## 15716 https://udn.com/news/story/7331/4816369 之勢 1 253
## 15717 https://udn.com/news/story/7331/4816369 公號 1 253
## 15718 https://udn.com/news/story/7331/4816369 升級 1 253
## 15719 https://udn.com/news/story/7331/4816369 反擊 1 253
## 15720 https://udn.com/news/story/7331/4816369 引發 1 253
## 15721 https://udn.com/news/story/7331/4816369 手軟 1 253
## 15722 https://udn.com/news/story/7331/4816369 外交 1 253
## 15723 https://udn.com/news/story/7331/4816369 外傳 1 253
## 15724 https://udn.com/news/story/7331/4816369 它會 1 253
## 15725 https://udn.com/news/story/7331/4816369 必將 1 253
## 15726 https://udn.com/news/story/7331/4816369 必須 1 253
## 15727 https://udn.com/news/story/7331/4816369 用意 1 253
## 15728 https://udn.com/news/story/7331/4816369 立即 1 253
## 15729 https://udn.com/news/story/7331/4816369 交通 1 253
## 15730 https://udn.com/news/story/7331/4816369 共和黨 1 253
## 15731 https://udn.com/news/story/7331/4816369 列入 1 253
## 15732 https://udn.com/news/story/7331/4816369 同一時間 1 253
## 15733 https://udn.com/news/story/7331/4816369 名單 1 253
## 15734 https://udn.com/news/story/7331/4816369 地秀 1 253
## 15735 https://udn.com/news/story/7331/4816369 有限 1 253
## 15736 https://udn.com/news/story/7331/4816369 此舉 1 253
## 15737 https://udn.com/news/story/7331/4816369 此類 1 253
## 15738 https://udn.com/news/story/7331/4816369 肌肉 1 253
## 15739 https://udn.com/news/story/7331/4816369 自由 1 253
## 15740 https://udn.com/news/story/7331/4816369 西沙 1 253
## 15741 https://udn.com/news/story/7331/4816369 利益 1 253
## 15742 https://udn.com/news/story/7331/4816369 局勢 1 253
## 15743 https://udn.com/news/story/7331/4816369 攻擊 1 253
## 15744 https://udn.com/news/story/7331/4816369 更加 1 253
## 15745 https://udn.com/news/story/7331/4816369 李華敏並 1 253
## 15746 https://udn.com/news/story/7331/4816369 李華敏則 1 253
## 15747 https://udn.com/news/story/7331/4816369 決不 1 253
## 15748 https://udn.com/news/story/7331/4816369 決心 1 253
## 15749 https://udn.com/news/story/7331/4816369 沒有 1 253
## 15750 https://udn.com/news/story/7331/4816369 走火 1 253
## 15751 https://udn.com/news/story/7331/4816369 防止 1 253
## 15752 https://udn.com/news/story/7331/4816369 並對 1 253
## 15753 https://udn.com/news/story/7331/4816369 事件 1 253
## 15754 https://udn.com/news/story/7331/4816369 拉動 1 253
## 15755 https://udn.com/news/story/7331/4816369 明顯 1 253
## 15756 https://udn.com/news/story/7331/4816369 武力 1 253
## 15757 https://udn.com/news/story/7331/4816369 表示 1 253
## 15758 https://udn.com/news/story/7331/4816369 宣布 1 253
## 15759 https://udn.com/news/story/7331/4816369 政府 1 253
## 15760 https://udn.com/news/story/7331/4816369 炫耀 1 253
## 15761 https://udn.com/news/story/7331/4816369 看成 1 253
## 15762 https://udn.com/news/story/7331/4816369 約束 1 253
## 15763 https://udn.com/news/story/7331/4816369 美中 1 253
## 15764 https://udn.com/news/story/7331/4816369 美國政府 1 253
## 15765 https://udn.com/news/story/7331/4816369 限制 1 253
## 15766 https://udn.com/news/story/7331/4816369 風險 1 253
## 15767 https://udn.com/news/story/7331/4816369 島礁 1 253
## 15768 https://udn.com/news/story/7331/4816369 氣焰 1 253
## 15769 https://udn.com/news/story/7331/4816369 海上 1 253
## 15770 https://udn.com/news/story/7331/4816369 真正 1 253
## 15771 https://udn.com/news/story/7331/4816369 航行 1 253
## 15772 https://udn.com/news/story/7331/4816369 配合 1 253
## 15773 https://udn.com/news/story/7331/4816369 停止 1 253
## 15774 https://udn.com/news/story/7331/4816369 區域 1 253
## 15775 https://udn.com/news/story/7331/4816369 區間 1 253
## 15776 https://udn.com/news/story/7331/4816369 商務部 1 253
## 15777 https://udn.com/news/story/7331/4816369 執政 1 253
## 15778 https://udn.com/news/story/7331/4816369 堅守 1 253
## 15779 https://udn.com/news/story/7331/4816369 堅決 1 253
## 15780 https://udn.com/news/story/7331/4816369 將在 1 253
## 15781 https://udn.com/news/story/7331/4816369 將其 1 253
## 15782 https://udn.com/news/story/7331/4816369 情況 1 253
## 15783 https://udn.com/news/story/7331/4816369 推行 1 253
## 15784 https://udn.com/news/story/7331/4816369 晚間 1 253
## 15785 https://udn.com/news/story/7331/4816369 毫不動搖 1 253
## 15786 https://udn.com/news/story/7331/4816369 清單 1 253
## 15787 https://udn.com/news/story/7331/4816369 現代化 1 253
## 15788 https://udn.com/news/story/7331/4816369 現有 1 253
## 15789 https://udn.com/news/story/7331/4816369 現實 1 253
## 15790 https://udn.com/news/story/7331/4816369 產生 1 253
## 15791 https://udn.com/news/story/7331/4816369 組織 1 253
## 15792 https://udn.com/news/story/7331/4816369 這也 1 253
## 15793 https://udn.com/news/story/7331/4816369 這片 1 253
## 15794 https://udn.com/news/story/7331/4816369 這次 1 253
## 15795 https://udn.com/news/story/7331/4816369 連任 1 253
## 15796 https://udn.com/news/story/7331/4816369 野蠻 1 253
## 15797 https://udn.com/news/story/7331/4816369 陸基 1 253
## 15798 https://udn.com/news/story/7331/4816369 敦促 1 253
## 15799 https://udn.com/news/story/7331/4816369 斯廷 1 253
## 15800 https://udn.com/news/story/7331/4816369 焦點 1 253
## 15801 https://udn.com/news/story/7331/4816369 發文 1 253
## 15802 https://udn.com/news/story/7331/4816369 發布 1 253
## 15803 https://udn.com/news/story/7331/4816369 發言人 1 253
## 15804 https://udn.com/news/story/7331/4816369 發射 1 253
## 15805 https://udn.com/news/story/7331/4816369 策應 1 253
## 15806 https://udn.com/news/story/7331/4816369 華盛頓 1 253
## 15807 https://udn.com/news/story/7331/4816369 進入 1 253
## 15808 https://udn.com/news/story/7331/4816369 進行 1 253
## 15809 https://udn.com/news/story/7331/4816369 微信 1 253
## 15810 https://udn.com/news/story/7331/4816369 愈發 1 253
## 15811 https://udn.com/news/story/7331/4816369 損害 1 253
## 15812 https://udn.com/news/story/7331/4816369 新聞 1 253
## 15813 https://udn.com/news/story/7331/4816369 新聞稿 1 253
## 15814 https://udn.com/news/story/7331/4816369 暗示 1 253
## 15815 https://udn.com/news/story/7331/4816369 準備 1 253
## 15816 https://udn.com/news/story/7331/4816369 較量 1 253
## 15817 https://udn.com/news/story/7331/4816369 過去 1 253
## 15818 https://udn.com/news/story/7331/4816369 零時 1 253
## 15819 https://udn.com/news/story/7331/4816369 實現 1 253
## 15820 https://udn.com/news/story/7331/4816369 實體 1 253
## 15821 https://udn.com/news/story/7331/4816369 對此 1 253
## 15822 https://udn.com/news/story/7331/4816369 對抗 1 253
## 15823 https://udn.com/news/story/7331/4816369 對衝 1 253
## 15824 https://udn.com/news/story/7331/4816369 態度 1 253
## 15825 https://udn.com/news/story/7331/4816369 構成 1 253
## 15826 https://udn.com/news/story/7331/4816369 管控 1 253
## 15827 https://udn.com/news/story/7331/4816369 緊張 1 253
## 15828 https://udn.com/news/story/7331/4816369 認識 1 253
## 15829 https://udn.com/news/story/7331/4816369 誤判 1 253
## 15830 https://udn.com/news/story/7331/4816369 領海 1 253
## 15831 https://udn.com/news/story/7331/4816369 增加 1 253
## 15832 https://udn.com/news/story/7331/4816369 衝突 1 253
## 15833 https://udn.com/news/story/7331/4816369 遭到 1 253
## 15834 https://udn.com/news/story/7331/4816369 戰略目標 1 253
## 15835 https://udn.com/news/story/7331/4816369 擅自 1 253
## 15836 https://udn.com/news/story/7331/4816369 選情 1 253
## 15837 https://udn.com/news/story/7331/4816369 頻密 1 253
## 15838 https://udn.com/news/story/7331/4816369 嚇住 1 253
## 15839 https://udn.com/news/story/7331/4816369 壓力 1 253
## 15840 https://udn.com/news/story/7331/4816369 壓制 1 253
## 15841 https://udn.com/news/story/7331/4816369 擦槍 1 253
## 15842 https://udn.com/news/story/7331/4816369 環球時報 1 253
## 15843 https://udn.com/news/story/7331/4816369 總統 1 253
## 15844 https://udn.com/news/story/7331/4816369 總編輯 1 253
## 15845 https://udn.com/news/story/7331/4816369 擺動 1 253
## 15846 https://udn.com/news/story/7331/4816369 藉此 1 253
## 15847 https://udn.com/news/story/7331/4816369 闖入 1 253
## 15848 https://udn.com/news/story/7331/4816369 爆發 1 253
## 15849 https://udn.com/news/story/7331/4816369 簽證 1 253
## 15850 https://udn.com/news/story/7331/4816369 警告 1 253
## 15851 https://udn.com/news/story/7331/4816369 驅逐艦 1 253
## 15852 https://udn.com/news/story/7331/4816369 驅離 1 253
## 15853 https://udn.com/news/story/7331/4817559 一段時間 1 97
## 15854 https://udn.com/news/story/7331/4817559 上午 1 97
## 15855 https://udn.com/news/story/7331/4817559 大規模 1 97
## 15856 https://udn.com/news/story/7331/4817559 不遠萬里 1 97
## 15857 https://udn.com/news/story/7331/4817559 反批 1 97
## 15858 https://udn.com/news/story/7331/4817559 主權 1 97
## 15859 https://udn.com/news/story/7331/4817559 以來 1 97
## 15860 https://udn.com/news/story/7331/4817559 先進 1 97
## 15861 https://udn.com/news/story/7331/4817559 回應 1 97
## 15862 https://udn.com/news/story/7331/4817559 如上 1 97
## 15863 https://udn.com/news/story/7331/4817559 安排 1 97
## 15864 https://udn.com/news/story/7331/4817559 有目共睹 1 97
## 15865 https://udn.com/news/story/7331/4817559 此舉 1 97
## 15866 https://udn.com/news/story/7331/4817559 西沙 1 97
## 15867 https://udn.com/news/story/7331/4817559 作用 1 97
## 15868 https://udn.com/news/story/7331/4817559 利益 1 97
## 15869 https://udn.com/news/story/7331/4817559 武力 1 97
## 15870 https://udn.com/news/story/7331/4817559 爭議 1 97
## 15871 https://udn.com/news/story/7331/4817559 社會 1 97
## 15872 https://udn.com/news/story/7331/4817559 威脅 1 97
## 15873 https://udn.com/news/story/7331/4817559 建設性 1 97
## 15874 https://udn.com/news/story/7331/4817559 指責 1 97
## 15875 https://udn.com/news/story/7331/4817559 挑撥離間 1 97
## 15876 https://udn.com/news/story/7331/4817559 活動 1 97
## 15877 https://udn.com/news/story/7331/4817559 派遣 1 97
## 15878 https://udn.com/news/story/7331/4817559 炫耀 1 97
## 15879 https://udn.com/news/story/7331/4817559 美方 1 97
## 15880 https://udn.com/news/story/7331/4817559 美國國防部 1 97
## 15881 https://udn.com/news/story/7331/4817559 軍艦 1 97
## 15882 https://udn.com/news/story/7331/4817559 破壞者 1 97
## 15883 https://udn.com/news/story/7331/4817559 訓練 1 97
## 15884 https://udn.com/news/story/7331/4817559 記者會 1 97
## 15885 https://udn.com/news/story/7331/4817559 停止 1 97
## 15886 https://udn.com/news/story/7331/4817559 偵察機 1 97
## 15887 https://udn.com/news/story/7331/4817559 國家 1 97
## 15888 https://udn.com/news/story/7331/4817559 國際 1 97
## 15889 https://udn.com/news/story/7331/4817559 堅作 1 97
## 15890 https://udn.com/news/story/7331/4817559 毫無根據 1 97
## 15891 https://udn.com/news/story/7331/4817559 毫無道理 1 97
## 15892 https://udn.com/news/story/7331/4817559 麻煩 1 97
## 15893 https://udn.com/news/story/7331/4817559 媒體 1 97
## 15894 https://udn.com/news/story/7331/4817559 無關 1 97
## 15895 https://udn.com/news/story/7331/4817559 發言人 1 97
## 15896 https://udn.com/news/story/7331/4817559 發射 1 97
## 15897 https://udn.com/news/story/7331/4817559 發揮 1 97
## 15898 https://udn.com/news/story/7331/4817559 損害 1 97
## 15899 https://udn.com/news/story/7331/4817559 群島 1 97
## 15900 https://udn.com/news/story/7331/4817559 解放軍 1 97
## 15901 https://udn.com/news/story/7331/4817559 詢問 1 97
## 15902 https://udn.com/news/story/7331/4817559 試驗 1 97
## 15903 https://udn.com/news/story/7331/4817559 維護 1 97
## 15904 https://udn.com/news/story/7331/4817559 製造者 1 97
## 15905 https://udn.com/news/story/7331/4817559 彈道導彈 1 97
## 15906 https://udn.com/news/story/7331/4817559 戰機 1 97
## 15907 https://udn.com/news/story/7331/4817559 興風作浪 1 97
## 15908 https://udn.com/news/story/7331/4817559 頻頻 1 97
## 15909 https://udn.com/news/story/7331/4817559 應該 1 97
## 15910 https://udn.com/news/story/7331/4832251 二戰 1 233
## 15911 https://udn.com/news/story/7331/4832251 上述 1 233
## 15912 https://udn.com/news/story/7331/4832251 下週 1 233
## 15913 https://udn.com/news/story/7331/4832251 不安 1 233
## 15914 https://udn.com/news/story/7331/4832251 不得不 1 233
## 15915 https://udn.com/news/story/7331/4832251 公開 1 233
## 15916 https://udn.com/news/story/7331/4832251 分裂 1 233
## 15917 https://udn.com/news/story/7331/4832251 引起 1 233
## 15918 https://udn.com/news/story/7331/4832251 世界 1 233
## 15919 https://udn.com/news/story/7331/4832251 主義 1 233
## 15920 https://udn.com/news/story/7331/4832251 主權 1 233
## 15921 https://udn.com/news/story/7331/4832251 付出代價 1 233
## 15922 https://udn.com/news/story/7331/4832251 包容 1 233
## 15923 https://udn.com/news/story/7331/4832251 北大西洋公約組織 1 233
## 15924 https://udn.com/news/story/7331/4832251 北美 1 233
## 15925 https://udn.com/news/story/7331/4832251 只會 1 233
## 15926 https://udn.com/news/story/7331/4832251 四國 1 233
## 15927 https://udn.com/news/story/7331/4832251 外長 1 233
## 15928 https://udn.com/news/story/7331/4832251 目的 1 233
## 15929 https://udn.com/news/story/7331/4832251 立於 1 233
## 15930 https://udn.com/news/story/7331/4832251 共同 1 233
## 15931 https://udn.com/news/story/7331/4832251 各國 1 233
## 15932 https://udn.com/news/story/7331/4832251 合辦 1 233
## 15933 https://udn.com/news/story/7331/4832251 同盟 1 233
## 15934 https://udn.com/news/story/7331/4832251 因素 1 233
## 15935 https://udn.com/news/story/7331/4832251 地緣 1 233
## 15936 https://udn.com/news/story/7331/4832251 多次 1 233
## 15937 https://udn.com/news/story/7331/4832251 存在 1 233
## 15938 https://udn.com/news/story/7331/4832251 安全 1 233
## 15939 https://udn.com/news/story/7331/4832251 西方 1 233
## 15940 https://udn.com/news/story/7331/4832251 巡航 1 233
## 15941 https://udn.com/news/story/7331/4832251 系列 1 233
## 15942 https://udn.com/news/story/7331/4832251 防衛 1 233
## 15943 https://udn.com/news/story/7331/4832251 協調 1 233
## 15944 https://udn.com/news/story/7331/4832251 服務 1 233
## 15945 https://udn.com/news/story/7331/4832251 東亞 1 233
## 15946 https://udn.com/news/story/7331/4832251 東盟 1 233
## 15947 https://udn.com/news/story/7331/4832251 近期 1 233
## 15948 https://udn.com/news/story/7331/4832251 信號 1 233
## 15949 https://udn.com/news/story/7331/4832251 冠狀病毒 1 233
## 15950 https://udn.com/news/story/7331/4832251 建立 1 233
## 15951 https://udn.com/news/story/7331/4832251 後者 1 233
## 15952 https://udn.com/news/story/7331/4832251 指出 1 233
## 15953 https://udn.com/news/story/7331/4832251 炮製 1 233
## 15954 https://udn.com/news/story/7331/4832251 疫情 1 233
## 15955 https://udn.com/news/story/7331/4832251 研究院 1 233
## 15956 https://udn.com/news/story/7331/4832251 研討會 1 233
## 15957 https://udn.com/news/story/7331/4832251 美軍 1 233
## 15958 https://udn.com/news/story/7331/4832251 軍事 1 233
## 15959 https://udn.com/news/story/7331/4832251 軍隊 1 233
## 15960 https://udn.com/news/story/7331/4832251 面臨 1 233
## 15961 https://udn.com/news/story/7331/4832251 捍衛 1 233
## 15962 https://udn.com/news/story/7331/4832251 根本 1 233
## 15963 https://udn.com/news/story/7331/4832251 疾病 1 233
## 15964 https://udn.com/news/story/7331/4832251 站隊 1 233
## 15965 https://udn.com/news/story/7331/4832251 起舞 1 233
## 15966 https://udn.com/news/story/7331/4832251 陣營 1 233
## 15967 https://udn.com/news/story/7331/4832251 副部長 1 233
## 15968 https://udn.com/news/story/7331/4832251 基調 1 233
## 15969 https://udn.com/news/story/7331/4832251 堅定 1 233
## 15970 https://udn.com/news/story/7331/4832251 將在 1 233
## 15971 https://udn.com/news/story/7331/4832251 強調 1 233
## 15972 https://udn.com/news/story/7331/4832251 從未 1 233
## 15973 https://udn.com/news/story/7331/4832251 從來 1 233
## 15974 https://udn.com/news/story/7331/4832251 推動 1 233
## 15975 https://udn.com/news/story/7331/4832251 盛行 1 233
## 15976 https://udn.com/news/story/7331/4832251 組成 1 233
## 15977 https://udn.com/news/story/7331/4832251 組建 1 233
## 15978 https://udn.com/news/story/7331/4832251 組織 1 233
## 15979 https://udn.com/news/story/7331/4832251 這場 1 233
## 15980 https://udn.com/news/story/7331/4832251 造成 1 233
## 15981 https://udn.com/news/story/7331/4832251 野心 1 233
## 15982 https://udn.com/news/story/7331/4832251 麻煩 1 233
## 15983 https://udn.com/news/story/7331/4832251 博奕 1 233
## 15984 https://udn.com/news/story/7331/4832251 單邊主義 1 233
## 15985 https://udn.com/news/story/7331/4832251 無意 1 233
## 15986 https://udn.com/news/story/7331/4832251 無疑 1 233
## 15987 https://udn.com/news/story/7331/4832251 發出 1 233
## 15988 https://udn.com/news/story/7331/4832251 等國 1 233
## 15989 https://udn.com/news/story/7331/4832251 視角 1 233
## 15990 https://udn.com/news/story/7331/4832251 視訊 1 233
## 15991 https://udn.com/news/story/7331/4832251 貿易 1 233
## 15992 https://udn.com/news/story/7331/4832251 開放 1 233
## 15993 https://udn.com/news/story/7331/4832251 勢力範圍 1 233
## 15994 https://udn.com/news/story/7331/4832251 會議 1 233
## 15995 https://udn.com/news/story/7331/4832251 綁架 1 233
## 15996 https://udn.com/news/story/7331/4832251 肆虐 1 233
## 15997 https://udn.com/news/story/7331/4832251 資料 1 233
## 15998 https://udn.com/news/story/7331/4832251 逼迫 1 233
## 15999 https://udn.com/news/story/7331/4832251 遏阻 1 233
## 16000 https://udn.com/news/story/7331/4832251 演討會 1 233
## 16001 https://udn.com/news/story/7331/4832251 演習 1 233
## 16002 https://udn.com/news/story/7331/4832251 演講時 1 233
## 16003 https://udn.com/news/story/7331/4832251 維護 1 233
## 16004 https://udn.com/news/story/7331/4832251 緊張 1 233
## 16005 https://udn.com/news/story/7331/4832251 製造者 1 233
## 16006 https://udn.com/news/story/7331/4832251 增加 1 233
## 16007 https://udn.com/news/story/7331/4832251 數度 1 233
## 16008 https://udn.com/news/story/7331/4832251 標誌 1 233
## 16009 https://udn.com/news/story/7331/4832251 歐洲 1 233
## 16010 https://udn.com/news/story/7331/4832251 確定 1 233
## 16011 https://udn.com/news/story/7331/4832251 戰略 1 233
## 16012 https://udn.com/news/story/7331/4832251 機制 1 233
## 16013 https://udn.com/news/story/7331/4832251 選邊 1 233
## 16014 https://udn.com/news/story/7331/4832251 繁榮 1 233
## 16015 https://udn.com/news/story/7331/4832251 藉口 1 233
## 16016 https://udn.com/news/story/7331/4832251 關注 1 233
## 16017 https://udn.com/news/story/7331/4832251 籌碼 1 233
## 16018 https://udn.com/news/story/7331/4832251 艦隊 1 233
## 16019 https://udn.com/news/story/7331/4832251 霸凌 1 233
## 16020 https://udn.com/news/story/7331/4832768 力場 1 111
## 16021 https://udn.com/news/story/7331/4832768 三日 1 111
## 16022 https://udn.com/news/story/7331/4832768 上當 1 111
## 16023 https://udn.com/news/story/7331/4832768 大國 1 111
## 16024 https://udn.com/news/story/7331/4832768 大陸 1 111
## 16025 https://udn.com/news/story/7331/4832768 工具 1 111
## 16026 https://udn.com/news/story/7331/4832768 不得人心 1 111
## 16027 https://udn.com/news/story/7331/4832768 不會 1 111
## 16028 https://udn.com/news/story/7331/4832768 不應 1 111
## 16029 https://udn.com/news/story/7331/4832768 介入 1 111
## 16030 https://udn.com/news/story/7331/4832768 化解 1 111
## 16031 https://udn.com/news/story/7331/4832768 文匯 1 111
## 16032 https://udn.com/news/story/7331/4832768 王毅稱 1 111
## 16033 https://udn.com/news/story/7331/4832768 出發 1 111
## 16034 https://udn.com/news/story/7331/4832768 外長 1 111
## 16035 https://udn.com/news/story/7331/4832768 打壓 1 111
## 16036 https://udn.com/news/story/7331/4832768 企圖 1 111
## 16037 https://udn.com/news/story/7331/4832768 全世界 1 111
## 16038 https://udn.com/news/story/7331/4832768 共同開發 1 111
## 16039 https://udn.com/news/story/7331/4832768 因素 1 111
## 16040 https://udn.com/news/story/7331/4832768 地緣 1 111
## 16041 https://udn.com/news/story/7331/4832768 存在 1 111
## 16042 https://udn.com/news/story/7331/4832768 成為 1 111
## 16043 https://udn.com/news/story/7331/4832768 早日 1 111
## 16044 https://udn.com/news/story/7331/4832768 局勢 1 111
## 16045 https://udn.com/news/story/7331/4832768 形勢 1 111
## 16046 https://udn.com/news/story/7331/4832768 批評 1 111
## 16047 https://udn.com/news/story/7331/4832768 步伐 1 111
## 16048 https://udn.com/news/story/7331/4832768 私利 1 111
## 16049 https://udn.com/news/story/7331/4832768 依然 1 111
## 16050 https://udn.com/news/story/7331/4832768 爭取 1 111
## 16051 https://udn.com/news/story/7331/4832768 爭議 1 111
## 16052 https://udn.com/news/story/7331/4832768 挑撥 1 111
## 16053 https://udn.com/news/story/7331/4832768 政治 1 111
## 16054 https://udn.com/news/story/7331/4832768 疫情 1 111
## 16055 https://udn.com/news/story/7331/4832768 美國 1 111
## 16056 https://udn.com/news/story/7331/4832768 面對 1 111
## 16057 https://udn.com/news/story/7331/4832768 面臨 1 111
## 16058 https://udn.com/news/story/7331/4832768 風險 1 111
## 16059 https://udn.com/news/story/7331/4832768 香港 1 111
## 16060 https://udn.com/news/story/7331/4832768 個別 1 111
## 16061 https://udn.com/news/story/7331/4832768 做法 1 111
## 16062 https://udn.com/news/story/7331/4832768 國務委員 1 111
## 16063 https://udn.com/news/story/7331/4832768 國際 1 111
## 16064 https://udn.com/news/story/7331/4832768 域外 1 111
## 16065 https://udn.com/news/story/7331/4832768 執意 1 111
## 16066 https://udn.com/news/story/7331/4832768 強調 1 111
## 16067 https://udn.com/news/story/7331/4832768 敏感 1 111
## 16068 https://udn.com/news/story/7331/4832768 遏制 1 111
## 16069 https://udn.com/news/story/7331/4832768 實質性 1 111
## 16070 https://udn.com/news/story/7331/4832768 對華 1 111
## 16071 https://udn.com/news/story/7331/4832768 增多 1 111
## 16072 https://udn.com/news/story/7331/4832768 確定 1 111
## 16073 https://udn.com/news/story/7331/4832768 蔓延 1 111
## 16074 https://udn.com/news/story/7331/4832768 複雜 1 111
## 16075 https://udn.com/news/story/7331/4832768 應成 1 111
## 16076 https://udn.com/news/story/7331/4832768 邁出 1 111
## 16077 https://udn.com/news/story/7331/4832768 點名 1 111
## 16078 https://udn.com/news/story/7331/4832768 關係 1 111
## 16079 https://udn.com/news/story/7331/4832768 競爭 1 111
## 16080 https://udn.com/news/story/7331/4832768 攜手 1 111
## 16081 https://udn.com/news/story/7331/4832768 攪亂 1 111
## 16082 https://udn.com/news/story/7331/4834648 一己 1 349
## 16083 https://udn.com/news/story/7331/4834648 一名 1 349
## 16084 https://udn.com/news/story/7331/4834648 一事 1 349
## 16085 https://udn.com/news/story/7331/4834648 一是 1 349
## 16086 https://udn.com/news/story/7331/4834648 一架 1 349
## 16087 https://udn.com/news/story/7331/4834648 一線 1 349
## 16088 https://udn.com/news/story/7331/4834648 二是 1 349
## 16089 https://udn.com/news/story/7331/4834648 力度 1 349
## 16090 https://udn.com/news/story/7331/4834648 下午 1 349
## 16091 https://udn.com/news/story/7331/4834648 也就是說 1 349
## 16092 https://udn.com/news/story/7331/4834648 大選 1 349
## 16093 https://udn.com/news/story/7331/4834648 已經 1 349
## 16094 https://udn.com/news/story/7331/4834648 不同 1 349
## 16095 https://udn.com/news/story/7331/4834648 不是 1 349
## 16096 https://udn.com/news/story/7331/4834648 不得人心 1 349
## 16097 https://udn.com/news/story/7331/4834648 不會 1 349
## 16098 https://udn.com/news/story/7331/4834648 中美 1 349
## 16099 https://udn.com/news/story/7331/4834648 反對 1 349
## 16100 https://udn.com/news/story/7331/4834648 巴士海峽 1 349
## 16101 https://udn.com/news/story/7331/4834648 手段 1 349
## 16102 https://udn.com/news/story/7331/4834648 文匯 1 349
## 16103 https://udn.com/news/story/7331/4834648 火力 1 349
## 16104 https://udn.com/news/story/7331/4834648 王亞 1 349
## 16105 https://udn.com/news/story/7331/4834648 主編 1 349
## 16106 https://udn.com/news/story/7331/4834648 主觀 1 349
## 16107 https://udn.com/news/story/7331/4834648 以往 1 349
## 16108 https://udn.com/news/story/7331/4834648 加大 1 349
## 16109 https://udn.com/news/story/7331/4834648 加油機 1 349
## 16110 https://udn.com/news/story/7331/4834648 北京大學 1 349
## 16111 https://udn.com/news/story/7331/4834648 可能 1 349
## 16112 https://udn.com/news/story/7331/4834648 左右 1 349
## 16113 https://udn.com/news/story/7331/4834648 正確 1 349
## 16114 https://udn.com/news/story/7331/4834648 民機 1 349
## 16115 https://udn.com/news/story/7331/4834648 生命 1 349
## 16116 https://udn.com/news/story/7331/4834648 再次 1 349
## 16117 https://udn.com/news/story/7331/4834648 同一 1 349
## 16118 https://udn.com/news/story/7331/4834648 回到 1 349
## 16119 https://udn.com/news/story/7331/4834648 回應 1 349
## 16120 https://udn.com/news/story/7331/4834648 地區 1 349
## 16121 https://udn.com/news/story/7331/4834648 多架 1 349
## 16122 https://udn.com/news/story/7331/4834648 多款 1 349
## 16123 https://udn.com/news/story/7331/4834648 妄圖 1 349
## 16124 https://udn.com/news/story/7331/4834648 安全 1 349
## 16125 https://udn.com/news/story/7331/4834648 安危 1 349
## 16126 https://udn.com/news/story/7331/4834648 安德森 1 349
## 16127 https://udn.com/news/story/7331/4834648 早就 1 349
## 16128 https://udn.com/news/story/7331/4834648 行徑 1 349
## 16129 https://udn.com/news/story/7331/4834648 行動 1 349
## 16130 https://udn.com/news/story/7331/4834648 位置 1 349
## 16131 https://udn.com/news/story/7331/4834648 判斷 1 349
## 16132 https://udn.com/news/story/7331/4834648 利益 1 349
## 16133 https://udn.com/news/story/7331/4834648 私利 1 349
## 16134 https://udn.com/news/story/7331/4834648 系統 1 349
## 16135 https://udn.com/news/story/7331/4834648 身分 1 349
## 16136 https://udn.com/news/story/7331/4834648 防空 1 349
## 16137 https://udn.com/news/story/7331/4834648 並不 1 349
## 16138 https://udn.com/news/story/7331/4834648 例行 1 349
## 16139 https://udn.com/news/story/7331/4834648 兩國人民 1 349
## 16140 https://udn.com/news/story/7331/4834648 刻意 1 349
## 16141 https://udn.com/news/story/7331/4834648 周邊 1 349
## 16142 https://udn.com/news/story/7331/4834648 奉勸 1 349
## 16143 https://udn.com/news/story/7331/4834648 奔襲 1 349
## 16144 https://udn.com/news/story/7331/4834648 官兵 1 349
## 16145 https://udn.com/news/story/7331/4834648 沿海 1 349
## 16146 https://udn.com/news/story/7331/4834648 知道 1 349
## 16147 https://udn.com/news/story/7331/4834648 知識 1 349
## 16148 https://udn.com/news/story/7331/4834648 空中加油 1 349
## 16149 https://udn.com/news/story/7331/4834648 空軍 1 349
## 16150 https://udn.com/news/story/7331/4834648 空軍基地 1 349
## 16151 https://udn.com/news/story/7331/4834648 空域 1 349
## 16152 https://udn.com/news/story/7331/4834648 長途 1 349
## 16153 https://udn.com/news/story/7331/4834648 非常規 1 349
## 16154 https://udn.com/news/story/7331/4834648 保持 1 349
## 16155 https://udn.com/news/story/7331/4834648 信息 1 349
## 16156 https://udn.com/news/story/7331/4834648 前往 1 349
## 16157 https://udn.com/news/story/7331/4834648 前為 1 349
## 16158 https://udn.com/news/story/7331/4834648 指出 1 349
## 16159 https://udn.com/news/story/7331/4834648 施壓 1 349
## 16160 https://udn.com/news/story/7331/4834648 是極 1 349
## 16161 https://udn.com/news/story/7331/4834648 架飛機 1 349
## 16162 https://udn.com/news/story/7331/4834648 活動 1 349
## 16163 https://udn.com/news/story/7331/4834648 相關 1 349
## 16164 https://udn.com/news/story/7331/4834648 研發 1 349
## 16165 https://udn.com/news/story/7331/4834648 軌道 1 349
## 16166 https://udn.com/news/story/7331/4834648 軍方 1 349
## 16167 https://udn.com/news/story/7331/4834648 軍事 1 349
## 16168 https://udn.com/news/story/7331/4834648 軍隊 1 349
## 16169 https://udn.com/news/story/7331/4834648 風險 1 349
## 16170 https://udn.com/news/story/7331/4834648 風險性 1 349
## 16171 https://udn.com/news/story/7331/4834648 首次 1 349
## 16172 https://udn.com/news/story/7331/4834648 香港 1 349
## 16173 https://udn.com/news/story/7331/4834648 原來 1 349
## 16174 https://udn.com/news/story/7331/4834648 捍衛 1 349
## 16175 https://udn.com/news/story/7331/4834648 時許 1 349
## 16176 https://udn.com/news/story/7331/4834648 時間 1 349
## 16177 https://udn.com/news/story/7331/4834648 根本利益 1 349
## 16178 https://udn.com/news/story/7331/4834648 消息 1 349
## 16179 https://udn.com/news/story/7331/4834648 消息人士 1 349
## 16180 https://udn.com/news/story/7331/4834648 特定 1 349
## 16181 https://udn.com/news/story/7331/4834648 破壞 1 349
## 16182 https://udn.com/news/story/7331/4834648 航空 1 349
## 16183 https://udn.com/news/story/7331/4834648 記者會 1 349
## 16184 https://udn.com/news/story/7331/4834648 起飛 1 349
## 16185 https://udn.com/news/story/7331/4834648 針對 1 349
## 16186 https://udn.com/news/story/7331/4834648 做手腳 1 349
## 16187 https://udn.com/news/story/7331/4834648 停止 1 349
## 16188 https://udn.com/news/story/7331/4834648 偽裝成 1 349
## 16189 https://udn.com/news/story/7331/4834648 商用 1 349
## 16190 https://udn.com/news/story/7331/4834648 國家主權 1 349
## 16191 https://udn.com/news/story/7331/4834648 基礎 1 349
## 16192 https://udn.com/news/story/7331/4834648 常見 1 349
## 16193 https://udn.com/news/story/7331/4834648 強調 1 349
## 16194 https://udn.com/news/story/7331/4834648 接收 1 349
## 16195 https://udn.com/news/story/7331/4834648 推動 1 349
## 16196 https://udn.com/news/story/7331/4834648 清晰明確 1 349
## 16197 https://udn.com/news/story/7331/4834648 現形 1 349
## 16198 https://udn.com/news/story/7331/4834648 現身 1 349
## 16199 https://udn.com/news/story/7331/4834648 現實 1 349
## 16200 https://udn.com/news/story/7331/4834648 理性 1 349
## 16201 https://udn.com/news/story/7331/4834648 第一 1 349
## 16202 https://udn.com/news/story/7331/4834648 這給 1 349
## 16203 https://udn.com/news/story/7331/4834648 通常 1 349
## 16204 https://udn.com/news/story/7331/4834648 媒體 1 349
## 16205 https://udn.com/news/story/7331/4834648 幾乎 1 349
## 16206 https://udn.com/news/story/7331/4834648 提供 1 349
## 16207 https://udn.com/news/story/7331/4834648 提到 1 349
## 16208 https://udn.com/news/story/7331/4834648 無法 1 349
## 16209 https://udn.com/news/story/7331/4834648 發布 1 349
## 16210 https://udn.com/news/story/7331/4834648 發言人 1 349
## 16211 https://udn.com/news/story/7331/4834648 發展 1 349
## 16212 https://udn.com/news/story/7331/4834648 短暫 1 349
## 16213 https://udn.com/news/story/7331/4834648 訴求 1 349
## 16214 https://udn.com/news/story/7331/4834648 進行 1 349
## 16215 https://udn.com/news/story/7331/4834648 開火 1 349
## 16216 https://udn.com/news/story/7331/4834648 開展活動 1 349
## 16217 https://udn.com/news/story/7331/4834648 意外事件 1 349
## 16218 https://udn.com/news/story/7331/4834648 新聞 1 349
## 16219 https://udn.com/news/story/7331/4834648 極力 1 349
## 16220 https://udn.com/news/story/7331/4834648 當天 1 349
## 16221 https://udn.com/news/story/7331/4834648 當日 1 349
## 16222 https://udn.com/news/story/7331/4834648 經由 1 349
## 16223 https://udn.com/news/story/7331/4834648 該機 1 349
## 16224 https://udn.com/news/story/7331/4834648 跟隨 1 349
## 16225 https://udn.com/news/story/7331/4834648 對方 1 349
## 16226 https://udn.com/news/story/7331/4834648 對此 1 349
## 16227 https://udn.com/news/story/7331/4834648 對華 1 349
## 16228 https://udn.com/news/story/7331/4834648 態度 1 349
## 16229 https://udn.com/news/story/7331/4834648 演練 1 349
## 16230 https://udn.com/news/story/7331/4834648 甄別 1 349
## 16231 https://udn.com/news/story/7331/4834648 疑似 1 349
## 16232 https://udn.com/news/story/7331/4834648 監控 1 349
## 16233 https://udn.com/news/story/7331/4834648 維護 1 349
## 16234 https://udn.com/news/story/7331/4834648 製造 1 349
## 16235 https://udn.com/news/story/7331/4834648 認清 1 349
## 16236 https://udn.com/news/story/7331/4834648 範圍 1 349
## 16237 https://udn.com/news/story/7331/4834648 衝突 1 349
## 16238 https://udn.com/news/story/7331/4834648 導致 1 349
## 16239 https://udn.com/news/story/7331/4834648 擁有 1 349
## 16240 https://udn.com/news/story/7331/4834648 磨合 1 349
## 16241 https://udn.com/news/story/7331/4834648 頻度 1 349
## 16242 https://udn.com/news/story/7331/4834648 頻繁 1 349
## 16243 https://udn.com/news/story/7331/4834648 還以 1 349
## 16244 https://udn.com/news/story/7331/4834648 雙方 1 349
## 16245 https://udn.com/news/story/7331/4834648 穩定 1 349
## 16246 https://udn.com/news/story/7331/4834648 關係密切 1 349
## 16247 https://udn.com/news/story/7331/4834648 關島 1 349
## 16248 https://udn.com/news/story/7331/4834648 嚴重後果 1 349
## 16249 https://udn.com/news/story/7331/4834648 變回 1 349
## 16250 https://udn.com/news/story/7331/4849422 一味 1 272
## 16251 https://udn.com/news/story/7331/4849422 一國 1 272
## 16252 https://udn.com/news/story/7331/4849422 上不持 1 272
## 16253 https://udn.com/news/story/7331/4849422 上半年 1 272
## 16254 https://udn.com/news/story/7331/4849422 大門 1 272
## 16255 https://udn.com/news/story/7331/4849422 大國 1 272
## 16256 https://udn.com/news/story/7331/4849422 已轉 1 272
## 16257 https://udn.com/news/story/7331/4849422 干涉內政 1 272
## 16258 https://udn.com/news/story/7331/4849422 干擾 1 272
## 16259 https://udn.com/news/story/7331/4849422 不會 1 272
## 16260 https://udn.com/news/story/7331/4849422 今年 1 272
## 16261 https://udn.com/news/story/7331/4849422 內政 1 272
## 16262 https://udn.com/news/story/7331/4849422 內需 1 272
## 16263 https://udn.com/news/story/7331/4849422 公民 1 272
## 16264 https://udn.com/news/story/7331/4849422 公然 1 272
## 16265 https://udn.com/news/story/7331/4849422 主權 1 272
## 16266 https://udn.com/news/story/7331/4849422 主體 1 272
## 16267 https://udn.com/news/story/7331/4849422 充分 1 272
## 16268 https://udn.com/news/story/7331/4849422 加強 1 272
## 16269 https://udn.com/news/story/7331/4849422 只會 1 272
## 16270 https://udn.com/news/story/7331/4849422 可能 1 272
## 16271 https://udn.com/news/story/7331/4849422 外交部 1 272
## 16272 https://udn.com/news/story/7331/4849422 外交部長 1 272
## 16273 https://udn.com/news/story/7331/4849422 市場 1 272
## 16274 https://udn.com/news/story/7331/4849422 正成 1 272
## 16275 https://udn.com/news/story/7331/4849422 立場 1 272
## 16276 https://udn.com/news/story/7331/4849422 共同 1 272
## 16277 https://udn.com/news/story/7331/4849422 印太 1 272
## 16278 https://udn.com/news/story/7331/4849422 危險 1 272
## 16279 https://udn.com/news/story/7331/4849422 合作 1 272
## 16280 https://udn.com/news/story/7331/4849422 因素 1 272
## 16281 https://udn.com/news/story/7331/4849422 在內 1 272
## 16282 https://udn.com/news/story/7331/4849422 地區衝突 1 272
## 16283 https://udn.com/news/story/7331/4849422 地緣 1 272
## 16284 https://udn.com/news/story/7331/4849422 好不好 1 272
## 16285 https://udn.com/news/story/7331/4849422 有過之而無不及 1 272
## 16286 https://udn.com/news/story/7331/4849422 行為 1 272
## 16287 https://udn.com/news/story/7331/4849422 估計 1 272
## 16288 https://udn.com/news/story/7331/4849422 別國 1 272
## 16289 https://udn.com/news/story/7331/4849422 努力 1 272
## 16290 https://udn.com/news/story/7331/4849422 希望 1 272
## 16291 https://udn.com/news/story/7331/4849422 批次 1 272
## 16292 https://udn.com/news/story/7331/4849422 事務 1 272
## 16293 https://udn.com/news/story/7331/4849422 例外 1 272
## 16294 https://udn.com/news/story/7331/4849422 到底 1 272
## 16295 https://udn.com/news/story/7331/4849422 制度 1 272
## 16296 https://udn.com/news/story/7331/4849422 刻意 1 272
## 16297 https://udn.com/news/story/7331/4849422 協商 1 272
## 16298 https://udn.com/news/story/7331/4849422 和雙 1 272
## 16299 https://udn.com/news/story/7331/4849422 承諾 1 272
## 16300 https://udn.com/news/story/7331/4849422 披露 1 272
## 16301 https://udn.com/news/story/7331/4849422 放棄 1 272
## 16302 https://udn.com/news/story/7331/4849422 法律 1 272
## 16303 https://udn.com/news/story/7331/4849422 炒作 1 272
## 16304 https://udn.com/news/story/7331/4849422 空間 1 272
## 16305 https://udn.com/news/story/7331/4849422 近年來 1 272
## 16306 https://udn.com/news/story/7331/4849422 指手劃腳 1 272
## 16307 https://udn.com/news/story/7331/4849422 指出 1 272
## 16308 https://udn.com/news/story/7331/4849422 挑動 1 272
## 16309 https://udn.com/news/story/7331/4849422 政府 1 272
## 16310 https://udn.com/news/story/7331/4849422 政客 1 272
## 16311 https://udn.com/news/story/7331/4849422 架次 1 272
## 16312 https://udn.com/news/story/7331/4849422 派出 1 272
## 16313 https://udn.com/news/story/7331/4849422 相互促進 1 272
## 16314 https://udn.com/news/story/7331/4849422 美方 1 272
## 16315 https://udn.com/news/story/7331/4849422 負為 1 272
## 16316 https://udn.com/news/story/7331/4849422 軍機 1 272
## 16317 https://udn.com/news/story/7331/4849422 軍艦 1 272
## 16318 https://udn.com/news/story/7331/4849422 重要 1 272
## 16319 https://udn.com/news/story/7331/4849422 風險 1 272
## 16320 https://udn.com/news/story/7331/4849422 香港 1 272
## 16321 https://udn.com/news/story/7331/4849422 個別 1 272
## 16322 https://udn.com/news/story/7331/4849422 拳擊 1 272
## 16323 https://udn.com/news/story/7331/4849422 時代 1 272
## 16324 https://udn.com/news/story/7331/4849422 格局 1 272
## 16325 https://udn.com/news/story/7331/4849422 海洋 1 272
## 16326 https://udn.com/news/story/7331/4849422 海域 1 272
## 16327 https://udn.com/news/story/7331/4849422 破壞 1 272
## 16328 https://udn.com/news/story/7331/4849422 航母 1 272
## 16329 https://udn.com/news/story/7331/4849422 參加 1 272
## 16330 https://udn.com/news/story/7331/4849422 問題 1 272
## 16331 https://udn.com/news/story/7331/4849422 國務委員 1 272
## 16332 https://udn.com/news/story/7331/4849422 基本準則 1 272
## 16333 https://udn.com/news/story/7331/4849422 強化 1 272
## 16334 https://udn.com/news/story/7331/4849422 從中 1 272
## 16335 https://udn.com/news/story/7331/4849422 推高 1 272
## 16336 https://udn.com/news/story/7331/4849422 推進 1 272
## 16337 https://udn.com/news/story/7331/4849422 毫不相干 1 272
## 16338 https://udn.com/news/story/7331/4849422 符合 1 272
## 16339 https://udn.com/news/story/7331/4849422 第二季 1 272
## 16340 https://udn.com/news/story/7331/4849422 規定 1 272
## 16341 https://udn.com/news/story/7331/4849422 這不 1 272
## 16342 https://udn.com/news/story/7331/4849422 這次 1 272
## 16343 https://udn.com/news/story/7331/4849422 博弈 1 272
## 16344 https://udn.com/news/story/7331/4849422 尊重 1 272
## 16345 https://udn.com/news/story/7331/4849422 循環 1 272
## 16346 https://udn.com/news/story/7331/4849422 提及 1 272
## 16347 https://udn.com/news/story/7331/4849422 提供 1 272
## 16348 https://udn.com/news/story/7331/4849422 最有 1 272
## 16349 https://udn.com/news/story/7331/4849422 最新動向 1 272
## 16350 https://udn.com/news/story/7331/4849422 期盼 1 272
## 16351 https://udn.com/news/story/7331/4849422 發言權 1 272
## 16352 https://udn.com/news/story/7331/4849422 訴求 1 272
## 16353 https://udn.com/news/story/7331/4849422 超大 1 272
## 16354 https://udn.com/news/story/7331/4849422 開放 1 272
## 16355 https://udn.com/news/story/7331/4849422 開越 1 272
## 16356 https://udn.com/news/story/7331/4849422 意願 1 272
## 16357 https://udn.com/news/story/7331/4849422 會上 1 272
## 16358 https://udn.com/news/story/7331/4849422 會議 1 272
## 16359 https://udn.com/news/story/7331/4849422 準則 1 272
## 16360 https://udn.com/news/story/7331/4849422 經濟 1 272
## 16361 https://udn.com/news/story/7331/4849422 義務 1 272
## 16362 https://udn.com/news/story/7331/4849422 肆意 1 272
## 16363 https://udn.com/news/story/7331/4849422 解決 1 272
## 16364 https://udn.com/news/story/7331/4849422 該國 1 272
## 16365 https://udn.com/news/story/7331/4849422 違背 1 272
## 16366 https://udn.com/news/story/7331/4849422 對立 1 272
## 16367 https://udn.com/news/story/7331/4849422 對抗 1 272
## 16368 https://udn.com/news/story/7331/4849422 構建 1 272
## 16369 https://udn.com/news/story/7331/4849422 網站 1 272
## 16370 https://udn.com/news/story/7331/4849422 緊張 1 272
## 16371 https://udn.com/news/story/7331/4849422 領土 1 272
## 16372 https://udn.com/news/story/7331/4849422 增速 1 272
## 16373 https://udn.com/news/story/7331/4849422 廣闊 1 272
## 16374 https://udn.com/news/story/7331/4849422 潛力 1 272
## 16375 https://udn.com/news/story/7331/4849422 潮流 1 272
## 16376 https://udn.com/news/story/7331/4849422 磋商 1 272
## 16377 https://udn.com/news/story/7331/4849422 編隊 1 272
## 16378 https://udn.com/news/story/7331/4849422 餘艘 1 272
## 16379 https://udn.com/news/story/7331/4849422 憲章 1 272
## 16380 https://udn.com/news/story/7331/4849422 橫衝直撞 1 272
## 16381 https://udn.com/news/story/7331/4849422 興風作浪 1 272
## 16382 https://udn.com/news/story/7331/4849422 謀取私利 1 272
## 16383 https://udn.com/news/story/7331/4849422 遵守 1 272
## 16384 https://udn.com/news/story/7331/4849422 優勢 1 272
## 16385 https://udn.com/news/story/7331/4849422 應成 1 272
## 16386 https://udn.com/news/story/7331/4849422 聯合國 1 272
## 16387 https://udn.com/news/story/7331/4849422 還對 1 272
## 16388 https://udn.com/news/story/7331/4849422 藉口 1 272
## 16389 https://udn.com/news/story/7331/4849422 雙循環 1 272
## 16390 https://udn.com/news/story/7331/4849422 穩定 1 272
## 16391 https://udn.com/news/story/7331/4849422 關係 1 272
## 16392 https://udn.com/news/story/7331/4849422 競技場 1 272
## 16393 https://udn.com/news/story/7331/4849422 釋放 1 272
## 16394 https://udn.com/news/story/7331/4849422 轟炸機 1 272
## 16395 https://udn.com/news/story/7331/4866729 一周 1 103
## 16396 https://udn.com/news/story/7331/4866729 一體 1 103
## 16397 https://udn.com/news/story/7331/4866729 上午 1 103
## 16398 https://udn.com/news/story/7331/4866729 中樞神經 1 103
## 16399 https://udn.com/news/story/7331/4866729 分別 1 103
## 16400 https://udn.com/news/story/7331/4866729 分類 1 103
## 16401 https://udn.com/news/story/7331/4866729 少見 1 103
## 16402 https://udn.com/news/story/7331/4866729 巴士海峽 1 103
## 16403 https://udn.com/news/story/7331/4866729 加上 1 103
## 16404 https://udn.com/news/story/7331/4866729 半左右 1 103
## 16405 https://udn.com/news/story/7331/4866729 外對 1 103
## 16406 https://udn.com/news/story/7331/4866729 先進 1 103
## 16407 https://udn.com/news/story/7331/4866729 在歷史上 1 103
## 16408 https://udn.com/news/story/7331/4866729 地面 1 103
## 16409 https://udn.com/news/story/7331/4866729 作戰 1 103
## 16410 https://udn.com/news/story/7331/4866729 即時 1 103
## 16411 https://udn.com/news/story/7331/4866729 防區 1 103
## 16412 https://udn.com/news/story/7331/4866729 往前 1 103
## 16413 https://udn.com/news/story/7331/4866729 表示 1 103
## 16414 https://udn.com/news/story/7331/4866729 近海 1 103
## 16415 https://udn.com/news/story/7331/4866729 近期 1 103
## 16416 https://udn.com/news/story/7331/4866729 後方 1 103
## 16417 https://udn.com/news/story/7331/4866729 指出 1 103
## 16418 https://udn.com/news/story/7331/4866729 指揮所 1 103
## 16419 https://udn.com/news/story/7331/4866729 活動 1 103
## 16420 https://udn.com/news/story/7331/4866729 美國 1 103
## 16421 https://udn.com/news/story/7331/4866729 海南島 1 103
## 16422 https://udn.com/news/story/7331/4866729 海軍 1 103
## 16423 https://udn.com/news/story/7331/4866729 追溯 1 103
## 16424 https://udn.com/news/story/7331/4866729 偵查 1 103
## 16425 https://udn.com/news/story/7331/4866729 探測 1 103
## 16426 https://udn.com/news/story/7331/4866729 第四 1 103
## 16427 https://udn.com/news/story/7331/4866729 途徑 1 103
## 16428 https://udn.com/news/story/7331/4866729 堪稱 1 103
## 16429 https://udn.com/news/story/7331/4866729 發布 1 103
## 16430 https://udn.com/news/story/7331/4866729 進行 1 103
## 16431 https://udn.com/news/story/7331/4866729 傳遞 1 103
## 16432 https://udn.com/news/story/7331/4866729 搜索 1 103
## 16433 https://udn.com/news/story/7331/4866729 搭載 1 103
## 16434 https://udn.com/news/story/7331/4866729 當天 1 103
## 16435 https://udn.com/news/story/7331/4866729 電子 1 103
## 16436 https://udn.com/news/story/7331/4866729 管理系統 1 103
## 16437 https://udn.com/news/story/7331/4866729 廣東 1 103
## 16438 https://udn.com/news/story/7331/4866729 數據 1 103
## 16439 https://udn.com/news/story/7331/4866729 戰場 1 103
## 16440 https://udn.com/news/story/7331/4866729 機載 1 103
## 16441 https://udn.com/news/story/7331/4866729 頻繁 1 103
## 16442 https://udn.com/news/story/7331/4866729 識別 1 103
## 16443 https://udn.com/news/story/7331/4866729 繼續 1 103
## 16444 https://udn.com/news/story/7331/4883732 一些 1 121
## 16445 https://udn.com/news/story/7331/4883732 一是 1 121
## 16446 https://udn.com/news/story/7331/4883732 二是 1 121
## 16447 https://udn.com/news/story/7331/4883732 力度 1 121
## 16448 https://udn.com/news/story/7331/4883732 大校 1 121
## 16449 https://udn.com/news/story/7331/4883732 中國 1 121
## 16450 https://udn.com/news/story/7331/4883732 分別 1 121
## 16451 https://udn.com/news/story/7331/4883732 反對 1 121
## 16452 https://udn.com/news/story/7331/4883732 反潛巡邏機 1 121
## 16453 https://udn.com/news/story/7331/4883732 引述 1 121
## 16454 https://udn.com/news/story/7331/4883732 日共 1 121
## 16455 https://udn.com/news/story/7331/4883732 世界 1 121
## 16456 https://udn.com/news/story/7331/4883732 加大 1 121
## 16457 https://udn.com/news/story/7331/4883732 正確 1 121
## 16458 https://udn.com/news/story/7331/4883732 回到 1 121
## 16459 https://udn.com/news/story/7331/4883732 回應 1 121
## 16460 https://udn.com/news/story/7331/4883732 地區 1 121
## 16461 https://udn.com/news/story/7331/4883732 安全 1 121
## 16462 https://udn.com/news/story/7331/4883732 利益 1 121
## 16463 https://udn.com/news/story/7331/4883732 吳謙 1 121
## 16464 https://udn.com/news/story/7331/4883732 沖繩 1 121
## 16465 https://udn.com/news/story/7331/4883732 例行 1 121
## 16466 https://udn.com/news/story/7331/4883732 兩國 1 121
## 16467 https://udn.com/news/story/7331/4883732 周邊 1 121
## 16468 https://udn.com/news/story/7331/4883732 和平 1 121
## 16469 https://udn.com/news/story/7331/4883732 奉勸 1 121
## 16470 https://udn.com/news/story/7331/4883732 官方 1 121
## 16471 https://udn.com/news/story/7331/4883732 抵近 1 121
## 16472 https://udn.com/news/story/7331/4883732 沿海 1 121
## 16473 https://udn.com/news/story/7331/4883732 空軍 1 121
## 16474 https://udn.com/news/story/7331/4883732 表示 1 121
## 16475 https://udn.com/news/story/7331/4883732 近期 1 121
## 16476 https://udn.com/news/story/7331/4883732 俄羅斯 1 121
## 16477 https://udn.com/news/story/7331/4883732 保持 1 121
## 16478 https://udn.com/news/story/7331/4883732 信號 1 121
## 16479 https://udn.com/news/story/7331/4883732 政客 1 121
## 16480 https://udn.com/news/story/7331/4883732 施壓 1 121
## 16481 https://udn.com/news/story/7331/4883732 活動 1 121
## 16482 https://udn.com/news/story/7331/4883732 派出 1 121
## 16483 https://udn.com/news/story/7331/4883732 軌道 1 121
## 16484 https://udn.com/news/story/7331/4883732 軍隊 1 121
## 16485 https://udn.com/news/story/7331/4883732 凌晨 1 121
## 16486 https://udn.com/news/story/7331/4883732 捍衛 1 121
## 16487 https://udn.com/news/story/7331/4883732 消失 1 121
## 16488 https://udn.com/news/story/7331/4883732 記者會 1 121
## 16489 https://udn.com/news/story/7331/4883732 起飛 1 121
## 16490 https://udn.com/news/story/7331/4883732 停止 1 121
## 16491 https://udn.com/news/story/7331/4883732 偵察機 1 121
## 16492 https://udn.com/news/story/7331/4883732 國家主權 1 121
## 16493 https://udn.com/news/story/7331/4883732 情況 1 121
## 16494 https://udn.com/news/story/7331/4883732 推動 1 121
## 16495 https://udn.com/news/story/7331/4883732 推測 1 121
## 16496 https://udn.com/news/story/7331/4883732 清晰明確 1 121
## 16497 https://udn.com/news/story/7331/4883732 現實 1 121
## 16498 https://udn.com/news/story/7331/4883732 理性 1 121
## 16499 https://udn.com/news/story/7331/4883732 通訊社 1 121
## 16500 https://udn.com/news/story/7331/4883732 報導 1 121
## 16501 https://udn.com/news/story/7331/4883732 智庫 1 121
## 16502 https://udn.com/news/story/7331/4883732 發言人 1 121
## 16503 https://udn.com/news/story/7331/4883732 發展 1 121
## 16504 https://udn.com/news/story/7331/4883732 進入 1 121
## 16505 https://udn.com/news/story/7331/4883732 微博 1 121
## 16506 https://udn.com/news/story/7331/4883732 新聞 1 121
## 16507 https://udn.com/news/story/7331/4883732 電子 1 121
## 16508 https://udn.com/news/story/7331/4883732 嘉手納 1 121
## 16509 https://udn.com/news/story/7331/4883732 對此 1 121
## 16510 https://udn.com/news/story/7331/4883732 對華 1 121
## 16511 https://udn.com/news/story/7331/4883732 態度 1 121
## 16512 https://udn.com/news/story/7331/4883732 監視 1 121
## 16513 https://udn.com/news/story/7331/4883732 維護 1 121
## 16514 https://udn.com/news/story/7331/4883732 認清 1 121
## 16515 https://udn.com/news/story/7331/4883732 衛星 1 121
## 16516 https://udn.com/news/story/7331/4883732 導彈 1 121
## 16517 https://udn.com/news/story/7331/4883732 頻度 1 121
## 16518 https://udn.com/news/story/7331/4883732 頻繁 1 121
## 16519 https://udn.com/news/story/7331/4883732 環球時報 1 121
## 16520 https://udn.com/news/story/7331/4883732 離開 1 121
## 16521 https://udn.com/news/story/7331/4883732 穩定 1 121
## 16522 https://udn.com/news/story/7331/4883732 關係 1 121
## 16523 https://udn.com/news/story/7331/4895326 一段時間 1 232
## 16524 https://udn.com/news/story/7331/4895326 已經 1 232
## 16525 https://udn.com/news/story/7331/4895326 不同 1 232
## 16526 https://udn.com/news/story/7331/4895326 公共 1 232
## 16527 https://udn.com/news/story/7331/4895326 分子 1 232
## 16528 https://udn.com/news/story/7331/4895326 反對 1 232
## 16529 https://udn.com/news/story/7331/4895326 反擊 1 232
## 16530 https://udn.com/news/story/7331/4895326 日其 1 232
## 16531 https://udn.com/news/story/7331/4895326 主持 1 232
## 16532 https://udn.com/news/story/7331/4895326 主權 1 232
## 16533 https://udn.com/news/story/7331/4895326 以來 1 232
## 16534 https://udn.com/news/story/7331/4895326 加劇 1 232
## 16535 https://udn.com/news/story/7331/4895326 叫囂 1 232
## 16536 https://udn.com/news/story/7331/4895326 外交部 1 232
## 16537 https://udn.com/news/story/7331/4895326 布防 1 232
## 16538 https://udn.com/news/story/7331/4895326 必要 1 232
## 16539 https://udn.com/news/story/7331/4895326 必須 1 232
## 16540 https://udn.com/news/story/7331/4895326 打擊 1 232
## 16541 https://udn.com/news/story/7331/4895326 本國 1 232
## 16542 https://udn.com/news/story/7331/4895326 本質 1 232
## 16543 https://udn.com/news/story/7331/4895326 正告 1 232
## 16544 https://udn.com/news/story/7331/4895326 共同 1 232
## 16545 https://udn.com/news/story/7331/4895326 各國 1 232
## 16546 https://udn.com/news/story/7331/4895326 合法 1 232
## 16547 https://udn.com/news/story/7331/4895326 合情 1 232
## 16548 https://udn.com/news/story/7331/4895326 合理 1 232
## 16549 https://udn.com/news/story/7331/4895326 回應 1 232
## 16550 https://udn.com/news/story/7331/4895326 地向 1 232
## 16551 https://udn.com/news/story/7331/4895326 安全 1 232
## 16552 https://udn.com/news/story/7331/4895326 成為 1 232
## 16553 https://udn.com/news/story/7331/4895326 自保 1 232
## 16554 https://udn.com/news/story/7331/4895326 自衛權 1 232
## 16555 https://udn.com/news/story/7331/4895326 行使 1 232
## 16556 https://udn.com/news/story/7331/4895326 利用 1 232
## 16557 https://udn.com/news/story/7331/4895326 攻擊 1 232
## 16558 https://udn.com/news/story/7331/4895326 更好 1 232
## 16559 https://udn.com/news/story/7331/4895326 決心 1 232
## 16560 https://udn.com/news/story/7331/4895326 沒有 1 232
## 16561 https://udn.com/news/story/7331/4895326 狂熱 1 232
## 16562 https://udn.com/news/story/7331/4895326 防禦 1 232
## 16563 https://udn.com/news/story/7331/4895326 並將 1 232
## 16564 https://udn.com/news/story/7331/4895326 事實證明 1 232
## 16565 https://udn.com/news/story/7331/4895326 來說 1 232
## 16566 https://udn.com/news/story/7331/4895326 例行 1 232
## 16567 https://udn.com/news/story/7331/4895326 承擔 1 232
## 16568 https://udn.com/news/story/7331/4895326 承諾 1 232
## 16569 https://udn.com/news/story/7331/4895326 抵近 1 232
## 16570 https://udn.com/news/story/7331/4895326 東亞 1 232
## 16571 https://udn.com/news/story/7331/4895326 表示 1 232
## 16572 https://udn.com/news/story/7331/4895326 威脅 1 232
## 16573 https://udn.com/news/story/7331/4895326 指出 1 232
## 16574 https://udn.com/news/story/7331/4895326 指責 1 232
## 16575 https://udn.com/news/story/7331/4895326 挑撥離間 1 232
## 16576 https://udn.com/news/story/7331/4895326 看到 1 232
## 16577 https://udn.com/news/story/7331/4895326 美方 1 232
## 16578 https://udn.com/news/story/7331/4895326 美國國務院 1 232
## 16579 https://udn.com/news/story/7331/4895326 軍艦 1 232
## 16580 https://udn.com/news/story/7331/4895326 島嶼 1 232
## 16581 https://udn.com/news/story/7331/4895326 島礁 1 232
## 16582 https://udn.com/news/story/7331/4895326 海上 1 232
## 16583 https://udn.com/news/story/7331/4895326 能力 1 232
## 16584 https://udn.com/news/story/7331/4895326 記者會 1 232
## 16585 https://udn.com/news/story/7331/4895326 高度 1 232
## 16586 https://udn.com/news/story/7331/4895326 偵察 1 232
## 16587 https://udn.com/news/story/7331/4895326 問題 1 232
## 16588 https://udn.com/news/story/7331/4895326 國土 1 232
## 16589 https://udn.com/news/story/7331/4895326 國家主權 1 232
## 16590 https://udn.com/news/story/7331/4895326 國際法 1 232
## 16591 https://udn.com/news/story/7331/4895326 堅決 1 232
## 16592 https://udn.com/news/story/7331/4895326 密集 1 232
## 16593 https://udn.com/news/story/7331/4895326 常年 1 232
## 16594 https://udn.com/news/story/7331/4895326 強調 1 232
## 16595 https://udn.com/news/story/7331/4895326 產品 1 232
## 16596 https://udn.com/news/story/7331/4895326 設施 1 232
## 16597 https://udn.com/news/story/7331/4895326 責任 1 232
## 16598 https://udn.com/news/story/7331/4895326 這與 1 232
## 16599 https://udn.com/news/story/7331/4895326 提供 1 232
## 16600 https://udn.com/news/story/7331/4895326 無意 1 232
## 16601 https://udn.com/news/story/7331/4895326 無端 1 232
## 16602 https://udn.com/news/story/7331/4895326 無關 1 232
## 16603 https://udn.com/news/story/7331/4895326 發言人 1 232
## 16604 https://udn.com/news/story/7331/4895326 發表聲明 1 232
## 16605 https://udn.com/news/story/7331/4895326 發起 1 232
## 16606 https://udn.com/news/story/7331/4895326 新聞報導 1 232
## 16607 https://udn.com/news/story/7331/4895326 極力 1 232
## 16608 https://udn.com/news/story/7331/4895326 當地 1 232
## 16609 https://udn.com/news/story/7331/4895326 義務 1 232
## 16610 https://udn.com/news/story/7331/4895326 違背 1 232
## 16611 https://udn.com/news/story/7331/4895326 圖謀 1 232
## 16612 https://udn.com/news/story/7331/4895326 實際上 1 232
## 16613 https://udn.com/news/story/7331/4895326 對此 1 232
## 16614 https://udn.com/news/story/7331/4895326 對華 1 232
## 16615 https://udn.com/news/story/7331/4895326 演習 1 232
## 16616 https://udn.com/news/story/7331/4895326 緊張局勢 1 232
## 16617 https://udn.com/news/story/7331/4895326 蓄意 1 232
## 16618 https://udn.com/news/story/7331/4895326 製造 1 232
## 16619 https://udn.com/news/story/7331/4895326 輕舉妄動 1 232
## 16620 https://udn.com/news/story/7331/4895326 履行 1 232
## 16621 https://udn.com/news/story/7331/4895326 澎湃 1 232
## 16622 https://udn.com/news/story/7331/4895326 範圍 1 232
## 16623 https://udn.com/news/story/7331/4895326 賦予 1 232
## 16624 https://udn.com/news/story/7331/4895326 戰爭販子 1 232
## 16625 https://udn.com/news/story/7331/4895326 戰機 1 232
## 16626 https://udn.com/news/story/7331/4895326 險惡 1 232
## 16627 https://udn.com/news/story/7331/4895326 頻頻 1 232
## 16628 https://udn.com/news/story/7331/4895326 頻繁 1 232
## 16629 https://udn.com/news/story/7331/4895326 還說 1 232
## 16630 https://udn.com/news/story/7331/4895326 藉口 1 232
## 16631 https://udn.com/news/story/7331/4895326 關係 1 232
## 16632 https://udn.com/news/story/7331/4895326 繼續 1 232
## 16633 https://udn.com/news/story/7331/4895326 耀武揚威 1 232
## 16634 https://udn.com/news/story/7331/4895326 警惕 1 232
## 16635 https://udn.com/news/story/7331/4895326 霸權 1 232
## 16636 https://udn.com/news/story/7331/4895326 權和 1 232
## 16637 https://udn.com/news/story/7331/4899934 大型 1 164
## 16638 https://udn.com/news/story/7331/4899934 大陸 1 164
## 16639 https://udn.com/news/story/7331/4899934 之下 1 164
## 16640 https://udn.com/news/story/7331/4899934 今天 1 164
## 16641 https://udn.com/news/story/7331/4899934 引述 1 164
## 16642 https://udn.com/news/story/7331/4899934 世界領先 1 164
## 16643 https://udn.com/news/story/7331/4899934 出塢 1 164
## 16644 https://udn.com/news/story/7331/4899934 加油 1 164
## 16645 https://udn.com/news/story/7331/4899934 左右 1 164
## 16646 https://udn.com/news/story/7331/4899934 未來 1 164
## 16647 https://udn.com/news/story/7331/4899934 正式 1 164
## 16648 https://udn.com/news/story/7331/4899934 目前 1 164
## 16649 https://udn.com/news/story/7331/4899934 交通運輸 1 164
## 16650 https://udn.com/news/story/7331/4899934 先後 1 164
## 16651 https://udn.com/news/story/7331/4899934 先進 1 164
## 16652 https://udn.com/news/story/7331/4899934 全球 1 164
## 16653 https://udn.com/news/story/7331/4899934 在此之前 1 164
## 16654 https://udn.com/news/story/7331/4899934 多型 1 164
## 16655 https://udn.com/news/story/7331/4899934 年來 1 164
## 16656 https://udn.com/news/story/7331/4899934 百米 1 164
## 16657 https://udn.com/news/story/7331/4899934 局勢 1 164
## 16658 https://udn.com/news/story/7331/4899934 巡邏 1 164
## 16659 https://udn.com/news/story/7331/4899934 投入 1 164
## 16660 https://udn.com/news/story/7331/4899934 兩艘 1 164
## 16661 https://udn.com/news/story/7331/4899934 具有 1 164
## 16662 https://udn.com/news/story/7331/4899934 武漢 1 164
## 16663 https://udn.com/news/story/7331/4899934 治理 1 164
## 16664 https://udn.com/news/story/7331/4899934 直升機 1 164
## 16665 https://udn.com/news/story/7331/4899934 長度 1 164
## 16666 https://udn.com/news/story/7331/4899934 南方日報 1 164
## 16667 https://udn.com/news/story/7331/4899934 南部 1 164
## 16668 https://udn.com/news/story/7331/4899934 後將 1 164
## 16669 https://udn.com/news/story/7331/4899934 指揮 1 164
## 16670 https://udn.com/news/story/7331/4899934 昨天 1 164
## 16671 https://udn.com/news/story/7331/4899934 派遣 1 164
## 16672 https://udn.com/news/story/7331/4899934 風力 1 164
## 16673 https://udn.com/news/story/7331/4899934 首個 1 164
## 16674 https://udn.com/news/story/7331/4899934 展開 1 164
## 16675 https://udn.com/news/story/7331/4899934 海上運輸 1 164
## 16676 https://udn.com/news/story/7331/4899934 海事 1 164
## 16677 https://udn.com/news/story/7331/4899934 海況 1 164
## 16678 https://udn.com/news/story/7331/4899934 海域 1 164
## 16679 https://udn.com/news/story/7331/4899934 航行 1 164
## 16680 https://udn.com/news/story/7331/4899934 配合 1 164
## 16681 https://udn.com/news/story/7331/4899934 動態 1 164
## 16682 https://udn.com/news/story/7331/4899934 將成 1 164
## 16683 https://udn.com/news/story/7331/4899934 救生 1 164
## 16684 https://udn.com/news/story/7331/4899934 救援 1 164
## 16685 https://udn.com/news/story/7331/4899934 曹德勝 1 164
## 16686 https://udn.com/news/story/7331/4899934 條件 1 164
## 16687 https://udn.com/news/story/7331/4899934 畢伍 1 164
## 16688 https://udn.com/news/story/7331/4899934 船到 1 164
## 16689 https://udn.com/news/story/7331/4899934 船塢 1 164
## 16690 https://udn.com/news/story/7331/4899934 處置 1 164
## 16691 https://udn.com/news/story/7331/4899934 規模 1 164
## 16692 https://udn.com/news/story/7331/4899934 設計 1 164
## 16693 https://udn.com/news/story/7331/4899934 這艘 1 164
## 16694 https://udn.com/news/story/7331/4899934 提升 1 164
## 16695 https://udn.com/news/story/7331/4899934 最大 1 164
## 16696 https://udn.com/news/story/7331/4899934 超過 1 164
## 16697 https://udn.com/news/story/7331/4899934 搜救 1 164
## 16698 https://udn.com/news/story/7331/4899934 搜尋 1 164
## 16699 https://udn.com/news/story/7331/4899934 搭載 1 164
## 16700 https://udn.com/news/story/7331/4899934 極大 1 164
## 16701 https://udn.com/news/story/7331/4899934 落成 1 164
## 16702 https://udn.com/news/story/7331/4899934 裝備 1 164
## 16703 https://udn.com/news/story/7331/4899934 裝與 1 164
## 16704 https://udn.com/news/story/7331/4899934 試航 1 164
## 16705 https://udn.com/news/story/7331/4899934 該船 1 164
## 16706 https://udn.com/news/story/7331/4899934 資料 1 164
## 16707 https://udn.com/news/story/7331/4899934 較大 1 164
## 16708 https://udn.com/news/story/7331/4899934 滿載 1 164
## 16709 https://udn.com/news/story/7331/4899934 監管 1 164
## 16710 https://udn.com/news/story/7331/4899934 管控 1 164
## 16711 https://udn.com/news/story/7331/4899934 管理 1 164
## 16712 https://udn.com/news/story/7331/4899934 綜合 1 164
## 16713 https://udn.com/news/story/7331/4899934 網上 1 164
## 16714 https://udn.com/news/story/7331/4899934 緊張 1 164
## 16715 https://udn.com/news/story/7331/4899934 廣州 1 164
## 16716 https://udn.com/news/story/7331/4899934 廣船國際 1 164
## 16717 https://udn.com/news/story/7331/4899934 編號 1 164
## 16718 https://udn.com/news/story/7331/4899934 噸位 1 164
## 16719 https://udn.com/news/story/7331/4899934 擁有 1 164
## 16720 https://udn.com/news/story/7331/4899934 營運 1 164
## 16721 https://udn.com/news/story/7331/4899934 轉趨 1 164
## 16722 https://udn.com/news/story/7331/4899934 顯示 1 164
## 16723 https://udn.com/news/story/7331/4922504 一段時間 1 262
## 16724 https://udn.com/news/story/7331/4922504 力量 1 262
## 16725 https://udn.com/news/story/7331/4922504 上半年 1 262
## 16726 https://udn.com/news/story/7331/4922504 已經 1 262
## 16727 https://udn.com/news/story/7331/4922504 不會 1 262
## 16728 https://udn.com/news/story/7331/4922504 中美有 1 262
## 16729 https://udn.com/news/story/7331/4922504 中曾 1 262
## 16730 https://udn.com/news/story/7331/4922504 之前 1 262
## 16731 https://udn.com/news/story/7331/4922504 公開 1 262
## 16732 https://udn.com/news/story/7331/4922504 反制 1 262
## 16733 https://udn.com/news/story/7331/4922504 引發 1 262
## 16734 https://udn.com/news/story/7331/4922504 文件 1 262
## 16735 https://udn.com/news/story/7331/4922504 方面 1 262
## 16736 https://udn.com/news/story/7331/4922504 王毅 1 262
## 16737 https://udn.com/news/story/7331/4922504 以往 1 262
## 16738 https://udn.com/news/story/7331/4922504 出入 1 262
## 16739 https://udn.com/news/story/7331/4922504 包括 1 262
## 16740 https://udn.com/news/story/7331/4922504 只會 1 262
## 16741 https://udn.com/news/story/7331/4922504 可控 1 262
## 16742 https://udn.com/news/story/7331/4922504 史地 1 262
## 16743 https://udn.com/news/story/7331/4922504 平穩 1 262
## 16744 https://udn.com/news/story/7331/4922504 未能 1 262
## 16745 https://udn.com/news/story/7331/4922504 民間 1 262
## 16746 https://udn.com/news/story/7331/4922504 目前 1 262
## 16747 https://udn.com/news/story/7331/4922504 仲裁 1 262
## 16748 https://udn.com/news/story/7331/4922504 任何一方 1 262
## 16749 https://udn.com/news/story/7331/4922504 全面 1 262
## 16750 https://udn.com/news/story/7331/4922504 地區 1 262
## 16751 https://udn.com/news/story/7331/4922504 地帶 1 262
## 16752 https://udn.com/news/story/7331/4922504 地點 1 262
## 16753 https://udn.com/news/story/7331/4922504 多年 1 262
## 16754 https://udn.com/news/story/7331/4922504 多個 1 262
## 16755 https://udn.com/news/story/7331/4922504 多艘 1 262
## 16756 https://udn.com/news/story/7331/4922504 此消彼長 1 262
## 16757 https://udn.com/news/story/7331/4922504 灰色 1 262
## 16758 https://udn.com/news/story/7331/4922504 行動 1 262
## 16759 https://udn.com/news/story/7331/4922504 作出 1 262
## 16760 https://udn.com/news/story/7331/4922504 兵力 1 262
## 16761 https://udn.com/news/story/7331/4922504 利益 1 262
## 16762 https://udn.com/news/story/7331/4922504 局勢 1 262
## 16763 https://udn.com/news/story/7331/4922504 更具 1 262
## 16764 https://udn.com/news/story/7331/4922504 災難 1 262
## 16765 https://udn.com/news/story/7331/4922504 兩次 1 262
## 16766 https://udn.com/news/story/7331/4922504 協調 1 262
## 16767 https://udn.com/news/story/7331/4922504 取決於 1 262
## 16768 https://udn.com/news/story/7331/4922504 受約束 1 262
## 16769 https://udn.com/news/story/7331/4922504 和平 1 262
## 16770 https://udn.com/news/story/7331/4922504 官方 1 262
## 16771 https://udn.com/news/story/7331/4922504 定期 1 262
## 16772 https://udn.com/news/story/7331/4922504 所指 1 262
## 16773 https://udn.com/news/story/7331/4922504 明報 1 262
## 16774 https://udn.com/news/story/7331/4922504 東亞 1 262
## 16775 https://udn.com/news/story/7331/4922504 東協 1 262
## 16776 https://udn.com/news/story/7331/4922504 附件 1 262
## 16777 https://udn.com/news/story/7331/4922504 保持 1 262
## 16778 https://udn.com/news/story/7331/4922504 則不 1 262
## 16779 https://udn.com/news/story/7331/4922504 前線 1 262
## 16780 https://udn.com/news/story/7331/4922504 後果 1 262
## 16781 https://udn.com/news/story/7331/4922504 指出 1 262
## 16782 https://udn.com/news/story/7331/4922504 挑撥 1 262
## 16783 https://udn.com/news/story/7331/4922504 挑釁性 1 262
## 16784 https://udn.com/news/story/7331/4922504 架次 1 262
## 16785 https://udn.com/news/story/7331/4922504 活動 1 262
## 16786 https://udn.com/news/story/7331/4922504 派出 1 262
## 16787 https://udn.com/news/story/7331/4922504 相對 1 262
## 16788 https://udn.com/news/story/7331/4922504 研究 1 262
## 16789 https://udn.com/news/story/7331/4922504 研究院 1 262
## 16790 https://udn.com/news/story/7331/4922504 突發 1 262
## 16791 https://udn.com/news/story/7331/4922504 突顯 1 262
## 16792 https://udn.com/news/story/7331/4922504 背景 1 262
## 16793 https://udn.com/news/story/7331/4922504 軍事 1 262
## 16794 https://udn.com/news/story/7331/4922504 軍機 1 262
## 16795 https://udn.com/news/story/7331/4922504 軍艦 1 262
## 16796 https://udn.com/news/story/7331/4922504 香港 1 262
## 16797 https://udn.com/news/story/7331/4922504 乘風破浪 1 262
## 16798 https://udn.com/news/story/7331/4922504 原則 1 262
## 16799 https://udn.com/news/story/7331/4922504 峰會 1 262
## 16800 https://udn.com/news/story/7331/4922504 島礁 1 262
## 16801 https://udn.com/news/story/7331/4922504 捍衛 1 262
## 16802 https://udn.com/news/story/7331/4922504 時機 1 262
## 16803 https://udn.com/news/story/7331/4922504 海洋 1 262
## 16804 https://udn.com/news/story/7331/4922504 海警 1 262
## 16805 https://udn.com/news/story/7331/4922504 航母 1 262
## 16806 https://udn.com/news/story/7331/4922504 院長 1 262
## 16807 https://udn.com/news/story/7331/4922504 動盪 1 262
## 16808 https://udn.com/news/story/7331/4922504 國防部 1 262
## 16809 https://udn.com/news/story/7331/4922504 國際 1 262
## 16810 https://udn.com/news/story/7331/4922504 基本 1 262
## 16811 https://udn.com/news/story/7331/4922504 堅定 1 262
## 16812 https://udn.com/news/story/7331/4922504 專訪 1 262
## 16813 https://udn.com/news/story/7331/4922504 強烈 1 262
## 16814 https://udn.com/news/story/7331/4922504 從事 1 262
## 16815 https://udn.com/news/story/7331/4922504 情<U+51B5> 1 262
## 16816 https://udn.com/news/story/7331/4922504 措施 1 262
## 16817 https://udn.com/news/story/7331/4922504 牽制 1 262
## 16818 https://udn.com/news/story/7331/4922504 現有 1 262
## 16819 https://udn.com/news/story/7331/4922504 現場 1 262
## 16820 https://udn.com/news/story/7331/4922504 組成 1 262
## 16821 https://udn.com/news/story/7331/4922504 規矩 1 262
## 16822 https://udn.com/news/story/7331/4922504 規範 1 262
## 16823 https://udn.com/news/story/7331/4922504 造成 1 262
## 16824 https://udn.com/news/story/7331/4922504 部隊 1 262
## 16825 https://udn.com/news/story/7331/4922504 陸續 1 262
## 16826 https://udn.com/news/story/7331/4922504 備忘錄 1 262
## 16827 https://udn.com/news/story/7331/4922504 博弈 1 262
## 16828 https://udn.com/news/story/7331/4922504 智庫 1 262
## 16829 https://udn.com/news/story/7331/4922504 最大化 1 262
## 16830 https://udn.com/news/story/7331/4922504 發生衝突 1 262
## 16831 https://udn.com/news/story/7331/4922504 短時間 1 262
## 16832 https://udn.com/news/story/7331/4922504 窗口期 1 262
## 16833 https://udn.com/news/story/7331/4922504 距離 1 262
## 16834 https://udn.com/news/story/7331/4922504 會議 1 262
## 16835 https://udn.com/news/story/7331/4922504 溝通 1 262
## 16836 https://udn.com/news/story/7331/4922504 經歷 1 262
## 16837 https://udn.com/news/story/7331/4922504 資料 1 262
## 16838 https://udn.com/news/story/7331/4922504 較長 1 262
## 16839 https://udn.com/news/story/7331/4922504 達成 1 262
## 16840 https://udn.com/news/story/7331/4922504 劃界 1 262
## 16841 https://udn.com/news/story/7331/4922504 對此 1 262
## 16842 https://udn.com/news/story/7331/4922504 對抗 1 262
## 16843 https://udn.com/news/story/7331/4922504 慣例 1 262
## 16844 https://udn.com/news/story/7331/4922504 漁民 1 262
## 16845 https://udn.com/news/story/7331/4922504 演習 1 262
## 16846 https://udn.com/news/story/7331/4922504 維護 1 262
## 16847 https://udn.com/news/story/7331/4922504 範圍 1 262
## 16848 https://udn.com/news/story/7331/4922504 諒解 1 262
## 16849 https://udn.com/news/story/7331/4922504 導致 1 262
## 16850 https://udn.com/news/story/7331/4922504 戰略 1 262
## 16851 https://udn.com/news/story/7331/4922504 機艦 1 262
## 16852 https://udn.com/news/story/7331/4922504 興風作浪 1 262
## 16853 https://udn.com/news/story/7331/4922504 謀取 1 262
## 16854 https://udn.com/news/story/7331/4922504 遵守 1 262
## 16855 https://udn.com/news/story/7331/4922504 頻繁 1 262
## 16856 https://udn.com/news/story/7331/4922504 檢討 1 262
## 16857 https://udn.com/news/story/7331/4922504 聯絡 1 262
## 16858 https://udn.com/news/story/7331/4922504 聲索國 1 262
## 16859 https://udn.com/news/story/7331/4922504 舉行 1 262
## 16860 https://udn.com/news/story/7331/4922504 轉折點 1 262
## 16861 https://udn.com/news/story/7331/4922504 雙邊 1 262
## 16862 https://udn.com/news/story/7331/4922504 穩定 1 262
## 16863 https://udn.com/news/story/7331/4922504 簽署 1 262
## 16864 https://udn.com/news/story/7331/4922504 難以預測 1 262
## 16865 https://udn.com/news/story/7331/4922504 顯示 1 262
## 16866 https://udn.com/news/story/7331/4926456 人員 1 128
## 16867 https://udn.com/news/story/7331/4926456 大陸 1 128
## 16868 https://udn.com/news/story/7331/4926456 中東 1 128
## 16869 https://udn.com/news/story/7331/4926456 手段 1 128
## 16870 https://udn.com/news/story/7331/4926456 支持 1 128
## 16871 https://udn.com/news/story/7331/4926456 付諸實施 1 128
## 16872 https://udn.com/news/story/7331/4926456 充分 1 128
## 16873 https://udn.com/news/story/7331/4926456 外交 1 128
## 16874 https://udn.com/news/story/7331/4926456 平等 1 128
## 16875 https://udn.com/news/story/7331/4926456 必要 1 128
## 16876 https://udn.com/news/story/7331/4926456 正當 1 128
## 16877 https://udn.com/news/story/7331/4926456 伊朗 1 128
## 16878 https://udn.com/news/story/7331/4926456 伊朗核 1 128
## 16879 https://udn.com/news/story/7331/4926456 共同 1 128
## 16880 https://udn.com/news/story/7331/4926456 共識 1 128
## 16881 https://udn.com/news/story/7331/4926456 合作 1 128
## 16882 https://udn.com/news/story/7331/4926456 地區 1 128
## 16883 https://udn.com/news/story/7331/4926456 安全 1 128
## 16884 https://udn.com/news/story/7331/4926456 安理會 1 128
## 16885 https://udn.com/news/story/7331/4926456 年內 1 128
## 16886 https://udn.com/news/story/7331/4926456 行為 1 128
## 16887 https://udn.com/news/story/7331/4926456 利益 1 128
## 16888 https://udn.com/news/story/7331/4926456 快捷 1 128
## 16889 https://udn.com/news/story/7331/4926456 攸關 1 128
## 16890 https://udn.com/news/story/7331/4926456 決定 1 128
## 16891 https://udn.com/news/story/7331/4926456 決議 1 128
## 16892 https://udn.com/news/story/7331/4926456 防控 1 128
## 16893 https://udn.com/news/story/7331/4926456 兩國 1 128
## 16894 https://udn.com/news/story/7331/4926456 協定 1 128
## 16895 https://udn.com/news/story/7331/4926456 協議 1 128
## 16896 https://udn.com/news/story/7331/4926456 和平 1 128
## 16897 https://udn.com/news/story/7331/4926456 官方 1 128
## 16898 https://udn.com/news/story/7331/4926456 往來 1 128
## 16899 https://udn.com/news/story/7331/4926456 表示 1 128
## 16900 https://udn.com/news/story/7331/4926456 便利 1 128
## 16901 https://udn.com/news/story/7331/4926456 建立 1 128
## 16902 https://udn.com/news/story/7331/4926456 政治 1 128
## 16903 https://udn.com/news/story/7331/4926456 疫情 1 128
## 16904 https://udn.com/news/story/7331/4926456 面臨 1 128
## 16905 https://udn.com/news/story/7331/4926456 香港 1 128
## 16906 https://udn.com/news/story/7331/4926456 涉港 1 128
## 16907 https://udn.com/news/story/7331/4926456 涉疆 1 128
## 16908 https://udn.com/news/story/7331/4926456 區域 1 128
## 16909 https://udn.com/news/story/7331/4926456 參與 1 128
## 16910 https://udn.com/news/story/7331/4926456 國務委員 1 128
## 16911 https://udn.com/news/story/7331/4926456 採取 1 128
## 16912 https://udn.com/news/story/7331/4926456 探討 1 128
## 16913 https://udn.com/news/story/7331/4926456 推動 1 128
## 16914 https://udn.com/news/story/7331/4926456 推進 1 128
## 16915 https://udn.com/news/story/7331/4926456 條件 1 128
## 16916 https://udn.com/news/story/7331/4926456 理解 1 128
## 16917 https://udn.com/news/story/7331/4926456 通道 1 128
## 16918 https://udn.com/news/story/7331/4926456 期待 1 128
## 16919 https://udn.com/news/story/7331/4926456 發展中國家 1 128
## 16920 https://udn.com/news/story/7331/4926456 菲律賓 1 128
## 16921 https://udn.com/news/story/7331/4926456 進程 1 128
## 16922 https://udn.com/news/story/7331/4926456 開展 1 128
## 16923 https://udn.com/news/story/7331/4926456 準則 1 128
## 16924 https://udn.com/news/story/7331/4926456 經濟 1 128
## 16925 https://udn.com/news/story/7331/4926456 落實 1 128
## 16926 https://udn.com/news/story/7331/4926456 解決 1 128
## 16927 https://udn.com/news/story/7331/4926456 達成 1 128
## 16928 https://udn.com/news/story/7331/4926456 電台 1 128
## 16929 https://udn.com/news/story/7331/4926456 夥伴關係 1 128
## 16930 https://udn.com/news/story/7331/4926456 盡快 1 128
## 16931 https://udn.com/news/story/7331/4926456 維護 1 128
## 16932 https://udn.com/news/story/7331/4926456 確保 1 128
## 16933 https://udn.com/news/story/7331/4926456 磋商 1 128
## 16934 https://udn.com/news/story/7331/4926456 幫助 1 128
## 16935 https://udn.com/news/story/7331/4926456 獲得 1 128
## 16936 https://udn.com/news/story/7331/4926456 舉措 1 128
## 16937 https://udn.com/news/story/7331/4926456 穩定 1 128
## 16938 https://udn.com/news/story/7331/4926456 簽署 1 128
## 16939 https://udn.com/news/story/7331/4926456 願意 1 128
## 16940 https://udn.com/news/story/7331/4926456 繼續 1 128
## 16941 https://udn.com/news/story/7331/4926456 歡迎 1 128
## 16942 https://udn.com/news/story/7331/4926456 讚賞 1 128
## 16943 https://udn.com/news/story/7331/5039328 一篇 1 198
## 16944 https://udn.com/news/story/7331/5039328 一顆 1 198
## 16945 https://udn.com/news/story/7331/5039328 三任 1 198
## 16946 https://udn.com/news/story/7331/5039328 上海 1 198
## 16947 https://udn.com/news/story/7331/5039328 大入 1 198
## 16948 https://udn.com/news/story/7331/5039328 已於 1 198
## 16949 https://udn.com/news/story/7331/5039328 中央委員 1 198
## 16950 https://udn.com/news/story/7331/5039328 中共貴州省委 1 198
## 16951 https://udn.com/news/story/7331/5039328 中宣部 1 198
## 16952 https://udn.com/news/story/7331/5039328 中紀委 1 198
## 16953 https://udn.com/news/story/7331/5039328 中國共產黨中央委員會 1 198
## 16954 https://udn.com/news/story/7331/5039328 今天 1 198
## 16955 https://udn.com/news/story/7331/5039328 今後 1 198
## 16956 https://udn.com/news/story/7331/5039328 公開 1 198
## 16957 https://udn.com/news/story/7331/5039328 引述 1 198
## 16958 https://udn.com/news/story/7331/5039328 包括 1 198
## 16959 https://udn.com/news/story/7331/5039328 可能 1 198
## 16960 https://udn.com/news/story/7331/5039328 可望 1 198
## 16961 https://udn.com/news/story/7331/5039328 台階 1 198
## 16962 https://udn.com/news/story/7331/5039328 平鄉 1 198
## 16963 https://udn.com/news/story/7331/5039328 本月 1 198
## 16964 https://udn.com/news/story/7331/5039328 吉林大學 1 198
## 16965 https://udn.com/news/story/7331/5039328 成為 1 198
## 16966 https://udn.com/news/story/7331/5039328 有望 1 198
## 16967 https://udn.com/news/story/7331/5039328 局並 1 198
## 16968 https://udn.com/news/story/7331/5039328 局長 1 198
## 16969 https://udn.com/news/story/7331/5039328 扶正 1 198
## 16970 https://udn.com/news/story/7331/5039328 更上層樓 1 198
## 16971 https://udn.com/news/story/7331/5039328 車禍 1 198
## 16972 https://udn.com/news/story/7331/5039328 並於 1 198
## 16973 https://udn.com/news/story/7331/5039328 事件 1 198
## 16974 https://udn.com/news/story/7331/5039328 兒子 1 198
## 16975 https://udn.com/news/story/7331/5039328 兩年 1 198
## 16976 https://udn.com/news/story/7331/5039328 兩個 1 198
## 16977 https://udn.com/news/story/7331/5039328 協助 1 198
## 16978 https://udn.com/news/story/7331/5039328 河北 1 198
## 16979 https://udn.com/news/story/7331/5039328 法學博士 1 198
## 16980 https://udn.com/news/story/7331/5039328 表示 1 198
## 16981 https://udn.com/news/story/7331/5039328 長期 1 198
## 16982 https://udn.com/news/story/7331/5039328 亮相 1 198
## 16983 https://udn.com/news/story/7331/5039328 保密 1 198
## 16984 https://udn.com/news/story/7331/5039328 保密局 1 198
## 16985 https://udn.com/news/story/7331/5039328 前夕 1 198
## 16986 https://udn.com/news/story/7331/5039328 後來 1 198
## 16987 https://udn.com/news/story/7331/5039328 指出 1 198
## 16988 https://udn.com/news/story/7331/5039328 政治局 1 198
## 16989 https://udn.com/news/story/7331/5039328 政法委 1 198
## 16990 https://udn.com/news/story/7331/5039328 星島日報 1 198
## 16991 https://udn.com/news/story/7331/5039328 派出機構 1 198
## 16992 https://udn.com/news/story/7331/5039328 兼任 1 198
## 16993 https://udn.com/news/story/7331/5039328 夏勇 1 198
## 16994 https://udn.com/news/story/7331/5039328 晉升 1 198
## 16995 https://udn.com/news/story/7331/5039328 消息 1 198
## 16996 https://udn.com/news/story/7331/5039328 副部長 1 198
## 16997 https://udn.com/news/story/7331/5039328 國家 1 198
## 16998 https://udn.com/news/story/7331/5039328 執掌 1 198
## 16999 https://udn.com/news/story/7331/5039328 梁言順 1 198
## 17000 https://udn.com/news/story/7331/5039328 清理 1 198
## 17001 https://udn.com/news/story/7331/5039328 畢業 1 198
## 17002 https://udn.com/news/story/7331/5039328 統一 1 198
## 17003 https://udn.com/news/story/7331/5039328 透露 1 198
## 17004 https://udn.com/news/story/7331/5039328 部長級 1 198
## 17005 https://udn.com/news/story/7331/5039328 部門 1 198
## 17006 https://udn.com/news/story/7331/5039328 最近 1 198
## 17007 https://udn.com/news/story/7331/5039328 期間 1 198
## 17008 https://udn.com/news/story/7331/5039328 登場 1 198
## 17009 https://udn.com/news/story/7331/5039328 發生 1 198
## 17010 https://udn.com/news/story/7331/5039328 評論 1 198
## 17011 https://udn.com/news/story/7331/5039328 進入 1 198
## 17012 https://udn.com/news/story/7331/5039328 新星 1 198
## 17013 https://udn.com/news/story/7331/5039328 當選 1 198
## 17014 https://udn.com/news/story/7331/5039328 資料 1 198
## 17015 https://udn.com/news/story/7331/5039328 網上 1 198
## 17016 https://udn.com/news/story/7331/5039328 領導 1 198
## 17017 https://udn.com/news/story/7331/5039328 標誌著 1 198
## 17018 https://udn.com/news/story/7331/5039328 調研室 1 198
## 17019 https://udn.com/news/story/7331/5039328 餘毒 1 198
## 17020 https://udn.com/news/story/7331/5039328 據介紹 1 198
## 17021 https://udn.com/news/story/7331/5039328 辦公 1 198
## 17022 https://udn.com/news/story/7331/5039328 辦公室 1 198
## 17023 https://udn.com/news/story/7331/5039328 臨危受命 1 198
## 17024 https://udn.com/news/story/7331/5039328 屬於 1 198
## 17025 https://udn.com/news/story/7331/5039328 顯示 1 198
## 17026 https://udn.com/news/story/7331/5220062 上海 1 90
## 17027 https://udn.com/news/story/7331/5220062 大陸 1 90
## 17028 https://udn.com/news/story/7331/5220062 中國 1 90
## 17029 https://udn.com/news/story/7331/5220062 五分之一 1 90
## 17030 https://udn.com/news/story/7331/5220062 友善 1 90
## 17031 https://udn.com/news/story/7331/5220062 心理健康 1 90
## 17032 https://udn.com/news/story/7331/5220062 水下 1 90
## 17033 https://udn.com/news/story/7331/5220062 平均 1 90
## 17034 https://udn.com/news/story/7331/5220062 生活 1 90
## 17035 https://udn.com/news/story/7331/5220062 回覆 1 90
## 17036 https://udn.com/news/story/7331/5220062 多名 1 90
## 17037 https://udn.com/news/story/7331/5220062 妄想 1 90
## 17038 https://udn.com/news/story/7331/5220062 行駛 1 90
## 17039 https://udn.com/news/story/7331/5220062 我國 1 90
## 17040 https://udn.com/news/story/7331/5220062 男性 1 90
## 17041 https://udn.com/news/story/7331/5220062 身體 1 90
## 17042 https://udn.com/news/story/7331/5220062 來得 1 90
## 17043 https://udn.com/news/story/7331/5220062 卷給 1 90
## 17044 https://udn.com/news/story/7331/5220062 孤立 1 90
## 17045 https://udn.com/news/story/7331/5220062 所有 1 90
## 17046 https://udn.com/news/story/7331/5220062 近年來 1 90
## 17047 https://udn.com/news/story/7331/5220062 南華早報 1 90
## 17048 https://udn.com/news/story/7331/5220062 封閉 1 90
## 17049 https://udn.com/news/story/7331/5220062 持續 1 90
## 17050 https://udn.com/news/story/7331/5220062 指標 1 90
## 17051 https://udn.com/news/story/7331/5220062 某種程度 1 90
## 17052 https://udn.com/news/story/7331/5220062 美國 1 90
## 17053 https://udn.com/news/story/7331/5220062 軍官 1 90
## 17054 https://udn.com/news/story/7331/5220062 軍隊 1 90
## 17055 https://udn.com/news/story/7331/5220062 軍種 1 90
## 17056 https://udn.com/news/story/7331/5220062 軍醫大學 1 90
## 17057 https://udn.com/news/story/7331/5220062 風險 1 90
## 17058 https://udn.com/news/story/7331/5220062 原因 1 90
## 17059 https://udn.com/news/story/7331/5220062 海軍 1 90
## 17060 https://udn.com/news/story/7331/5220062 得分 1 90
## 17061 https://udn.com/news/story/7331/5220062 推測 1 90
## 17062 https://udn.com/news/story/7331/5220062 船艙 1 90
## 17063 https://udn.com/news/story/7331/5220062 被害 1 90
## 17064 https://udn.com/news/story/7331/5220062 這分 1 90
## 17065 https://udn.com/news/story/7331/5220062 連續 1 90
## 17066 https://udn.com/news/story/7331/5220062 部署 1 90
## 17067 https://udn.com/news/story/7331/5220062 報導 1 90
## 17068 https://udn.com/news/story/7331/5220062 最新 1 90
## 17069 https://udn.com/news/story/7331/5220062 焦慮 1 90
## 17070 https://udn.com/news/story/7331/5220062 發表 1 90
## 17071 https://udn.com/news/story/7331/5220062 發問 1 90
## 17072 https://udn.com/news/story/7331/5220062 結果顯示 1 90
## 17073 https://udn.com/news/story/7331/5220062 進行 1 90
## 17074 https://udn.com/news/story/7331/5220062 過度 1 90
## 17075 https://udn.com/news/story/7331/5220062 嘈雜 1 90
## 17076 https://udn.com/news/story/7331/5220062 演習 1 90
## 17077 https://udn.com/news/story/7331/5220062 潛艦會 1 90
## 17078 https://udn.com/news/story/7331/5220062 還得 1 90
## 17079 https://udn.com/news/story/7331/5220062 醫學期刊 1 90
## 17080 https://udn.com/news/story/7331/5220062 嚴重 1 90
## 17081 https://udn.com/news/story/7331/5220062 顯示 1 90
## 17082 https://udn.com/news/story/7331/5235138 一貫 1 99
## 17083 https://udn.com/news/story/7331/5235138 之海 1 99
## 17084 https://udn.com/news/story/7331/5235138 予以 1 99
## 17085 https://udn.com/news/story/7331/5235138 允許 1 99
## 17086 https://udn.com/news/story/7331/5235138 公眾號 1 99
## 17087 https://udn.com/news/story/7331/5235138 友誼 1 99
## 17088 https://udn.com/news/story/7331/5235138 未經 1 99
## 17089 https://udn.com/news/story/7331/5235138 伎倆 1 99
## 17090 https://udn.com/news/story/7331/5235138 全程 1 99
## 17091 https://udn.com/news/story/7331/5235138 合作 1 99
## 17092 https://udn.com/news/story/7331/5235138 行徑 1 99
## 17093 https://udn.com/news/story/7331/5235138 西沙 1 99
## 17094 https://udn.com/news/story/7331/5235138 伯克級 1 99
## 17095 https://udn.com/news/story/7331/5235138 兵力 1 99
## 17096 https://udn.com/news/story/7331/5235138 戒備狀態 1 99
## 17097 https://udn.com/news/story/7331/5235138 批評 1 99
## 17098 https://udn.com/news/story/7331/5235138 良好氛圍 1 99
## 17099 https://udn.com/news/story/7331/5235138 侃號 1 99
## 17100 https://udn.com/news/story/7331/5235138 表示 1 99
## 17101 https://udn.com/news/story/7331/5235138 附近 1 99
## 17102 https://udn.com/news/story/7331/5235138 侵犯 1 99
## 17103 https://udn.com/news/story/7331/5235138 保持 1 99
## 17104 https://udn.com/news/story/7331/5235138 南海諸島 1 99
## 17105 https://udn.com/news/story/7331/5235138 政府 1 99
## 17106 https://udn.com/news/story/7331/5235138 美軍 1 99
## 17107 https://udn.com/news/story/7331/5235138 美艦 1 99
## 17108 https://udn.com/news/story/7331/5235138 風雲 1 99
## 17109 https://udn.com/news/story/7331/5235138 捍衛 1 99
## 17110 https://udn.com/news/story/7331/5235138 時刻 1 99
## 17111 https://udn.com/news/story/7331/5235138 海空 1 99
## 17112 https://udn.com/news/story/7331/5235138 海域 1 99
## 17113 https://udn.com/news/story/7331/5235138 神盾 1 99
## 17114 https://udn.com/news/story/7331/5235138 航行 1 99
## 17115 https://udn.com/news/story/7331/5235138 高度 1 99
## 17116 https://udn.com/news/story/7331/5235138 國家主權 1 99
## 17117 https://udn.com/news/story/7331/5235138 堅決 1 99
## 17118 https://udn.com/news/story/7331/5235138 強調 1 99
## 17119 https://udn.com/news/story/7331/5235138 晚間 1 99
## 17120 https://udn.com/news/story/7331/5235138 混合 1 99
## 17121 https://udn.com/news/story/7331/5235138 這一 1 99
## 17122 https://udn.com/news/story/7331/5235138 這艘 1 99
## 17123 https://udn.com/news/story/7331/5235138 部隊 1 99
## 17124 https://udn.com/news/story/7331/5235138 報導 1 99
## 17125 https://udn.com/news/story/7331/5235138 無可爭辯 1 99
## 17126 https://udn.com/news/story/7331/5235138 發言人 1 99
## 17127 https://udn.com/news/story/7331/5235138 微信 1 99
## 17128 https://udn.com/news/story/7331/5235138 新聞 1 99
## 17129 https://udn.com/news/story/7331/5235138 跟蹤 1 99
## 17130 https://udn.com/news/story/7331/5235138 監視 1 99
## 17131 https://udn.com/news/story/7331/5235138 蓄意 1 99
## 17132 https://udn.com/news/story/7331/5235138 誤導 1 99
## 17133 https://udn.com/news/story/7331/5235138 領海 1 99
## 17134 https://udn.com/news/story/7331/5235138 擁有 1 99
## 17135 https://udn.com/news/story/7331/5235138 擅自 1 99
## 17136 https://udn.com/news/story/7331/5235138 操控 1 99
## 17137 https://udn.com/news/story/7331/5235138 輿論 1 99
## 17138 https://udn.com/news/story/7331/5235138 擾亂 1 99
## 17139 https://udn.com/news/story/7331/5235138 闖入 1 99
## 17140 https://udn.com/news/story/7331/5235138 嚴重 1 99
## 17141 https://udn.com/news/story/7331/5235138 嚴重破壞 1 99
## 17142 https://udn.com/news/story/7331/5235138 警告 1 99
## 17143 https://udn.com/news/story/7331/5235138 霸權 1 99
## 17144 https://udn.com/news/story/7331/5235138 驅逐艦 1 99
## 17145 https://udn.com/news/story/7331/5235138 驅離 1 99
## 17146 https://udn.com/news/story/7331/5235138 變幻 1 99
## 17147 https://udn.com/news/story/7331/5285610 一名 1 128
## 17148 https://udn.com/news/story/7331/5285610 一貫 1 128
## 17149 https://udn.com/news/story/7331/5285610 力量 1 128
## 17150 https://udn.com/news/story/7331/5285610 女王 1 128
## 17151 https://udn.com/news/story/7331/5285610 今年 1 128
## 17152 https://udn.com/news/story/7331/5285610 升溫 1 128
## 17153 https://udn.com/news/story/7331/5285610 月初 1 128
## 17154 https://udn.com/news/story/7331/5285610 主權 1 128
## 17155 https://udn.com/news/story/7331/5285610 加入 1 128
## 17156 https://udn.com/news/story/7331/5285610 加大 1 128
## 17157 https://udn.com/news/story/7331/5285610 加拿大 1 128
## 17158 https://udn.com/news/story/7331/5285610 台灣 1 128
## 17159 https://udn.com/news/story/7331/5285610 外交部 1 128
## 17160 https://udn.com/news/story/7331/5285610 打擊 1 128
## 17161 https://udn.com/news/story/7331/5285610 本月 1 128
## 17162 https://udn.com/news/story/7331/5285610 正在 1 128
## 17163 https://udn.com/news/story/7331/5285610 伊莉莎白 1 128
## 17164 https://udn.com/news/story/7331/5285610 危害 1 128
## 17165 https://udn.com/news/story/7331/5285610 各國 1 128
## 17166 https://udn.com/news/story/7331/5285610 地區 1 128
## 17167 https://udn.com/news/story/7331/5285610 安全 1 128
## 17168 https://udn.com/news/story/7331/5285610 安寧 1 128
## 17169 https://udn.com/news/story/7331/5285610 西方 1 128
## 17170 https://udn.com/news/story/7331/5285610 局勢 1 128
## 17171 https://udn.com/news/story/7331/5285610 希望 1 128
## 17172 https://udn.com/news/story/7331/5285610 攻擊型 1 128
## 17173 https://udn.com/news/story/7331/5285610 汪文斌 1 128
## 17174 https://udn.com/news/story/7331/5285610 決心 1 128
## 17175 https://udn.com/news/story/7331/5285610 享有 1 128
## 17176 https://udn.com/news/story/7331/5285610 依據 1 128
## 17177 https://udn.com/news/story/7331/5285610 官員 1 128
## 17178 https://udn.com/news/story/7331/5285610 帕利 1 128
## 17179 https://udn.com/news/story/7331/5285610 近期 1 128
## 17180 https://udn.com/news/story/7331/5285610 附近 1 128
## 17181 https://udn.com/news/story/7331/5285610 則在 1 128
## 17182 https://udn.com/news/story/7331/5285610 挑動 1 128
## 17183 https://udn.com/news/story/7331/5285610 派出 1 128
## 17184 https://udn.com/news/story/7331/5285610 美日澳 1 128
## 17185 https://udn.com/news/story/7331/5285610 美國之音 1 128
## 17186 https://udn.com/news/story/7331/5285610 英國海軍 1 128
## 17187 https://udn.com/news/story/7331/5285610 軍事 1 128
## 17188 https://udn.com/news/story/7331/5285610 軍艦 1 128
## 17189 https://udn.com/news/story/7331/5285610 核潛艇 1 128
## 17190 https://udn.com/news/story/7331/5285610 海上 1 128
## 17191 https://udn.com/news/story/7331/5285610 海峽 1 128
## 17192 https://udn.com/news/story/7331/5285610 海域 1 128
## 17193 https://udn.com/news/story/7331/5285610 破壞 1 128
## 17194 https://udn.com/news/story/7331/5285610 航空母艦 1 128
## 17195 https://udn.com/news/story/7331/5285610 記者會 1 128
## 17196 https://udn.com/news/story/7331/5285610 問題 1 128
## 17197 https://udn.com/news/story/7331/5285610 國防 1 128
## 17198 https://udn.com/news/story/7331/5285610 國防部 1 128
## 17199 https://udn.com/news/story/7331/5285610 國防部長 1 128
## 17200 https://udn.com/news/story/7331/5285610 國際法 1 128
## 17201 https://udn.com/news/story/7331/5285610 堅決 1 128
## 17202 https://udn.com/news/story/7331/5285610 堅定不移 1 128
## 17203 https://udn.com/news/story/7331/5285610 途經 1 128
## 17204 https://udn.com/news/story/7331/5285610 部分 1 128
## 17205 https://udn.com/news/story/7331/5285610 尊重 1 128
## 17206 https://udn.com/news/story/7331/5285610 無事生非 1 128
## 17207 https://udn.com/news/story/7331/5285610 發言人 1 128
## 17208 https://udn.com/news/story/7331/5285610 進行 1 128
## 17209 https://udn.com/news/story/7331/5285610 意志 1 128
## 17210 https://udn.com/news/story/7331/5285610 群已 1 128
## 17211 https://udn.com/news/story/7331/5285610 演習 1 128
## 17212 https://udn.com/news/story/7331/5285610 維護 1 128
## 17213 https://udn.com/news/story/7331/5285610 聲稱 1 128
## 17214 https://udn.com/news/story/7331/5285610 穩定 1 128
## 17215 https://udn.com/news/story/7331/5285610 艦船 1 128
## 17216 https://udn.com/news/story/7331/5285610 艦艇 1 128
## 17217 https://udn.com/news/story/7331/5287493 一定 1 428
## 17218 https://udn.com/news/story/7331/5287493 一是 1 428
## 17219 https://udn.com/news/story/7331/5287493 一項 1 428
## 17220 https://udn.com/news/story/7331/5287493 了解 1 428
## 17221 https://udn.com/news/story/7331/5287493 二是 1 428
## 17222 https://udn.com/news/story/7331/5287493 二軌 1 428
## 17223 https://udn.com/news/story/7331/5287493 二戰 1 428
## 17224 https://udn.com/news/story/7331/5287493 人才 1 428
## 17225 https://udn.com/news/story/7331/5287493 人權 1 428
## 17226 https://udn.com/news/story/7331/5287493 三是 1 428
## 17227 https://udn.com/news/story/7331/5287493 大陸 1 428
## 17228 https://udn.com/news/story/7331/5287493 小島 1 428
## 17229 https://udn.com/news/story/7331/5287493 川普 1 428
## 17230 https://udn.com/news/story/7331/5287493 已經 1 428
## 17231 https://udn.com/news/story/7331/5287493 不用 1 428
## 17232 https://udn.com/news/story/7331/5287493 不是 1 428
## 17233 https://udn.com/news/story/7331/5287493 不能 1 428
## 17234 https://udn.com/news/story/7331/5287493 不會 1 428
## 17235 https://udn.com/news/story/7331/5287493 中歐 1 428
## 17236 https://udn.com/news/story/7331/5287493 之間 1 428
## 17237 https://udn.com/news/story/7331/5287493 反問 1 428
## 17238 https://udn.com/news/story/7331/5287493 方向 1 428
## 17239 https://udn.com/news/story/7331/5287493 以來 1 428
## 17240 https://udn.com/news/story/7331/5287493 北京大學國際關係學院 1 428
## 17241 https://udn.com/news/story/7331/5287493 四是 1 428
## 17242 https://udn.com/news/story/7331/5287493 它並 1 428
## 17243 https://udn.com/news/story/7331/5287493 平衡 1 428
## 17244 https://udn.com/news/story/7331/5287493 民間 1 428
## 17245 https://udn.com/news/story/7331/5287493 生產鏈 1 428
## 17246 https://udn.com/news/story/7331/5287493 仲裁 1 428
## 17247 https://udn.com/news/story/7331/5287493 先決條件 1 428
## 17248 https://udn.com/news/story/7331/5287493 共同 1 428
## 17249 https://udn.com/news/story/7331/5287493 共同利益 1 428
## 17250 https://udn.com/news/story/7331/5287493 共識 1 428
## 17251 https://udn.com/news/story/7331/5287493 各方 1 428
## 17252 https://udn.com/news/story/7331/5287493 合法權益 1 428
## 17253 https://udn.com/news/story/7331/5287493 在技術上 1 428
## 17254 https://udn.com/news/story/7331/5287493 地位 1 428
## 17255 https://udn.com/news/story/7331/5287493 多地 1 428
## 17256 https://udn.com/news/story/7331/5287493 好轉 1 428
## 17257 https://udn.com/news/story/7331/5287493 存在 1 428
## 17258 https://udn.com/news/story/7331/5287493 成功 1 428
## 17259 https://udn.com/news/story/7331/5287493 成果 1 428
## 17260 https://udn.com/news/story/7331/5287493 成績 1 428
## 17261 https://udn.com/news/story/7331/5287493 自力更生 1 428
## 17262 https://udn.com/news/story/7331/5287493 自然 1 428
## 17263 https://udn.com/news/story/7331/5287493 至今 1 428
## 17264 https://udn.com/news/story/7331/5287493 行為 1 428
## 17265 https://udn.com/news/story/7331/5287493 西方 1 428
## 17266 https://udn.com/news/story/7331/5287493 別人 1 428
## 17267 https://udn.com/news/story/7331/5287493 利用 1 428
## 17268 https://udn.com/news/story/7331/5287493 改革開放 1 428
## 17269 https://udn.com/news/story/7331/5287493 改善 1 428
## 17270 https://udn.com/news/story/7331/5287493 更大 1 428
## 17271 https://udn.com/news/story/7331/5287493 沒法 1 428
## 17272 https://udn.com/news/story/7331/5287493 良性 1 428
## 17273 https://udn.com/news/story/7331/5287493 角力 1 428
## 17274 https://udn.com/news/story/7331/5287493 角度看 1 428
## 17275 https://udn.com/news/story/7331/5287493 走向 1 428
## 17276 https://udn.com/news/story/7331/5287493 並不認 1 428
## 17277 https://udn.com/news/story/7331/5287493 來看 1 428
## 17278 https://udn.com/news/story/7331/5287493 協商 1 428
## 17279 https://udn.com/news/story/7331/5287493 取決於 1 428
## 17280 https://udn.com/news/story/7331/5287493 取得 1 428
## 17281 https://udn.com/news/story/7331/5287493 周邊國家 1 428
## 17282 https://udn.com/news/story/7331/5287493 所有 1 428
## 17283 https://udn.com/news/story/7331/5287493 所謂 1 428
## 17284 https://udn.com/news/story/7331/5287493 承認 1 428
## 17285 https://udn.com/news/story/7331/5287493 拓展 1 428
## 17286 https://udn.com/news/story/7331/5287493 放棄 1 428
## 17287 https://udn.com/news/story/7331/5287493 東南亞 1 428
## 17288 https://udn.com/news/story/7331/5287493 空間 1 428
## 17289 https://udn.com/news/story/7331/5287493 長期 1 428
## 17290 https://udn.com/news/story/7331/5287493 客觀 1 428
## 17291 https://udn.com/news/story/7331/5287493 帝國 1 428
## 17292 https://udn.com/news/story/7331/5287493 建構 1 428
## 17293 https://udn.com/news/story/7331/5287493 思路 1 428
## 17294 https://udn.com/news/story/7331/5287493 故事 1 428
## 17295 https://udn.com/news/story/7331/5287493 施加 1 428
## 17296 https://udn.com/news/story/7331/5287493 是否 1 428
## 17297 https://udn.com/news/story/7331/5287493 某種 1 428
## 17298 https://udn.com/news/story/7331/5287493 為止 1 428
## 17299 https://udn.com/news/story/7331/5287493 相互 1 428
## 17300 https://udn.com/news/story/7331/5287493 相互依存 1 428
## 17301 https://udn.com/news/story/7331/5287493 研究 1 428
## 17302 https://udn.com/news/story/7331/5287493 研發 1 428
## 17303 https://udn.com/news/story/7331/5287493 科技 1 428
## 17304 https://udn.com/news/story/7331/5287493 英國 1 428
## 17305 https://udn.com/news/story/7331/5287493 要求 1 428
## 17306 https://udn.com/news/story/7331/5287493 重大 1 428
## 17307 https://udn.com/news/story/7331/5287493 重要 1 428
## 17308 https://udn.com/news/story/7331/5287493 重新 1 428
## 17309 https://udn.com/news/story/7331/5287493 限制 1 428
## 17310 https://udn.com/news/story/7331/5287493 風景名勝 1 428
## 17311 https://udn.com/news/story/7331/5287493 個別 1 428
## 17312 https://udn.com/news/story/7331/5287493 能夠 1 428
## 17313 https://udn.com/news/story/7331/5287493 迴避 1 428
## 17314 https://udn.com/news/story/7331/5287493 針對 1 428
## 17315 https://udn.com/news/story/7331/5287493 做到 1 428
## 17316 https://udn.com/news/story/7331/5287493 做過 1 428
## 17317 https://udn.com/news/story/7331/5287493 國內 1 428
## 17318 https://udn.com/news/story/7331/5287493 執政 1 428
## 17319 https://udn.com/news/story/7331/5287493 強調 1 428
## 17320 https://udn.com/news/story/7331/5287493 得到 1 428
## 17321 https://udn.com/news/story/7331/5287493 從中 1 428
## 17322 https://udn.com/news/story/7331/5287493 情況 1 428
## 17323 https://udn.com/news/story/7331/5287493 採用 1 428
## 17324 https://udn.com/news/story/7331/5287493 探討 1 428
## 17325 https://udn.com/news/story/7331/5287493 接下來 1 428
## 17326 https://udn.com/news/story/7331/5287493 接受 1 428
## 17327 https://udn.com/news/story/7331/5287493 控制 1 428
## 17328 https://udn.com/news/story/7331/5287493 推動 1 428
## 17329 https://udn.com/news/story/7331/5287493 教授 1 428
## 17330 https://udn.com/news/story/7331/5287493 淡化 1 428
## 17331 https://udn.com/news/story/7331/5287493 異類 1 428
## 17332 https://udn.com/news/story/7331/5287493 處理 1 428
## 17333 https://udn.com/news/story/7331/5287493 訪問 1 428
## 17334 https://udn.com/news/story/7331/5287493 這也會 1 428
## 17335 https://udn.com/news/story/7331/5287493 這在 1 428
## 17336 https://udn.com/news/story/7331/5287493 造成 1 428
## 17337 https://udn.com/news/story/7331/5287493 幾年 1 428
## 17338 https://udn.com/news/story/7331/5287493 幾個 1 428
## 17339 https://udn.com/news/story/7331/5287493 提到 1 428
## 17340 https://udn.com/news/story/7331/5287493 最好 1 428
## 17341 https://udn.com/news/story/7331/5287493 最佳 1 428
## 17342 https://udn.com/news/story/7331/5287493 期間 1 428
## 17343 https://udn.com/news/story/7331/5287493 發生 1 428
## 17344 https://udn.com/news/story/7331/5287493 發現 1 428
## 17345 https://udn.com/news/story/7331/5287493 評社 1 428
## 17346 https://udn.com/news/story/7331/5287493 超級大國 1 428
## 17347 https://udn.com/news/story/7331/5287493 傳統 1 428
## 17348 https://udn.com/news/story/7331/5287493 傷害 1 428
## 17349 https://udn.com/news/story/7331/5287493 會給 1 428
## 17350 https://udn.com/news/story/7331/5287493 極致 1 428
## 17351 https://udn.com/news/story/7331/5287493 準則 1 428
## 17352 https://udn.com/news/story/7331/5287493 當時 1 428
## 17353 https://udn.com/news/story/7331/5287493 當務之急 1 428
## 17354 https://udn.com/news/story/7331/5287493 經貿 1 428
## 17355 https://udn.com/news/story/7331/5287493 萬萬 1 428
## 17356 https://udn.com/news/story/7331/5287493 資源 1 428
## 17357 https://udn.com/news/story/7331/5287493 賈慶國還 1 428
## 17358 https://udn.com/news/story/7331/5287493 過激 1 428
## 17359 https://udn.com/news/story/7331/5287493 達成協議 1 428
## 17360 https://udn.com/news/story/7331/5287493 團隊 1 428
## 17361 https://udn.com/news/story/7331/5287493 實力 1 428
## 17362 https://udn.com/news/story/7331/5287493 對抗 1 428
## 17363 https://udn.com/news/story/7331/5287493 對話 1 428
## 17364 https://udn.com/news/story/7331/5287493 構成 1 428
## 17365 https://udn.com/news/story/7331/5287493 管理 1 428
## 17366 https://udn.com/news/story/7331/5287493 聚焦 1 428
## 17367 https://udn.com/news/story/7331/5287493 製造 1 428
## 17368 https://udn.com/news/story/7331/5287493 認真 1 428
## 17369 https://udn.com/news/story/7331/5287493 認識 1 428
## 17370 https://udn.com/news/story/7331/5287493 說成 1 428
## 17371 https://udn.com/news/story/7331/5287493 說法 1 428
## 17372 https://udn.com/news/story/7331/5287493 領域 1 428
## 17373 https://udn.com/news/story/7331/5287493 增大 1 428
## 17374 https://udn.com/news/story/7331/5287493 審視 1 428
## 17375 https://udn.com/news/story/7331/5287493 層面 1 428
## 17376 https://udn.com/news/story/7331/5287493 影響 1 428
## 17377 https://udn.com/news/story/7331/5287493 談判 1 428
## 17378 https://udn.com/news/story/7331/5287493 談到 1 428
## 17379 https://udn.com/news/story/7331/5287493 學生 1 428
## 17380 https://udn.com/news/story/7331/5287493 學會 1 428
## 17381 https://udn.com/news/story/7331/5287493 戰爭 1 428
## 17382 https://udn.com/news/story/7331/5287493 戰略 1 428
## 17383 https://udn.com/news/story/7331/5287493 戰略性 1 428
## 17384 https://udn.com/news/story/7331/5287493 獨立自主 1 428
## 17385 https://udn.com/news/story/7331/5287493 辦法 1 428
## 17386 https://udn.com/news/story/7331/5287493 選擇 1 428
## 17387 https://udn.com/news/story/7331/5287493 優先 1 428
## 17388 https://udn.com/news/story/7331/5287493 壓力 1 428
## 17389 https://udn.com/news/story/7331/5287493 擱置 1 428
## 17390 https://udn.com/news/story/7331/5287493 環節 1 428
## 17391 https://udn.com/news/story/7331/5287493 講好 1 428
## 17392 https://udn.com/news/story/7331/5287493 還會 1 428
## 17393 https://udn.com/news/story/7331/5287493 簽訂 1 428
## 17394 https://udn.com/news/story/7331/5287493 關注 1 428
## 17395 https://udn.com/news/story/7331/5287493 願意 1 428
## 17396 https://udn.com/news/story/7331/5287493 嚴重 1 428
## 17397 https://udn.com/news/story/7331/5287493 霸權 1 428
## 17398 https://udn.com/news/story/7331/5294249 人造 1 279
## 17399 https://udn.com/news/story/7331/5294249 大國 1 279
## 17400 https://udn.com/news/story/7331/5294249 不能 1 279
## 17401 https://udn.com/news/story/7331/5294249 不會 1 279
## 17402 https://udn.com/news/story/7331/5294249 中國外交部 1 279
## 17403 https://udn.com/news/story/7331/5294249 內閣 1 279
## 17404 https://udn.com/news/story/7331/5294249 分析 1 279
## 17405 https://udn.com/news/story/7331/5294249 反駁 1 279
## 17406 https://udn.com/news/story/7331/5294249 引述 1 279
## 17407 https://udn.com/news/story/7331/5294249 支持 1 279
## 17408 https://udn.com/news/story/7331/5294249 月初 1 279
## 17409 https://udn.com/news/story/7331/5294249 月將 1 279
## 17410 https://udn.com/news/story/7331/5294249 水域 1 279
## 17411 https://udn.com/news/story/7331/5294249 主義 1 279
## 17412 https://udn.com/news/story/7331/5294249 以此 1 279
## 17413 https://udn.com/news/story/7331/5294249 以來 1 279
## 17414 https://udn.com/news/story/7331/5294249 凸顯 1 279
## 17415 https://udn.com/news/story/7331/5294249 包含 1 279
## 17416 https://udn.com/news/story/7331/5294249 北韓 1 279
## 17417 https://udn.com/news/story/7331/5294249 去年 1 279
## 17418 https://udn.com/news/story/7331/5294249 可能 1 279
## 17419 https://udn.com/news/story/7331/5294249 外交 1 279
## 17420 https://udn.com/news/story/7331/5294249 打著 1 279
## 17421 https://udn.com/news/story/7331/5294249 目的 1 279
## 17422 https://udn.com/news/story/7331/5294249 印度洋 1 279
## 17423 https://udn.com/news/story/7331/5294249 危害 1 279
## 17424 https://udn.com/news/story/7331/5294249 各國 1 279
## 17425 https://udn.com/news/story/7331/5294249 回應 1 279
## 17426 https://udn.com/news/story/7331/5294249 多邊 1 279
## 17427 https://udn.com/news/story/7331/5294249 判決 1 279
## 17428 https://udn.com/news/story/7331/5294249 巡弋 1 279
## 17429 https://udn.com/news/story/7331/5294249 巡防艦 1 279
## 17430 https://udn.com/news/story/7331/5294249 批准 1 279
## 17431 https://udn.com/news/story/7331/5294249 批評 1 279
## 17432 https://udn.com/news/story/7331/5294249 攻擊 1 279
## 17433 https://udn.com/news/story/7331/5294249 汪文斌 1 279
## 17434 https://udn.com/news/story/7331/5294249 並在 1 279
## 17435 https://udn.com/news/story/7331/5294249 享有 1 279
## 17436 https://udn.com/news/story/7331/5294249 官方 1 279
## 17437 https://udn.com/news/story/7331/5294249 帕里 1 279
## 17438 https://udn.com/news/story/7331/5294249 所有 1 279
## 17439 https://udn.com/news/story/7331/5294249 所長 1 279
## 17440 https://udn.com/news/story/7331/5294249 所謂 1 279
## 17441 https://udn.com/news/story/7331/5294249 沿岸國 1 279
## 17442 https://udn.com/news/story/7331/5294249 法院 1 279
## 17443 https://udn.com/news/story/7331/5294249 法蘭克福 1 279
## 17444 https://udn.com/news/story/7331/5294249 表明 1 279
## 17445 https://udn.com/news/story/7331/5294249 表態 1 279
## 17446 https://udn.com/news/story/7331/5294249 返國 1 279
## 17447 https://udn.com/news/story/7331/5294249 保持 1 279
## 17448 https://udn.com/news/story/7331/5294249 前往 1 279
## 17449 https://udn.com/news/story/7331/5294249 政策 1 279
## 17450 https://udn.com/news/story/7331/5294249 星期三 1 279
## 17451 https://udn.com/news/story/7331/5294249 派出 1 279
## 17452 https://udn.com/news/story/7331/5294249 派遣 1 279
## 17453 https://udn.com/news/story/7331/5294249 看出 1 279
## 17454 https://udn.com/news/story/7331/5294249 研究院 1 279
## 17455 https://udn.com/news/story/7331/5294249 穿航 1 279
## 17456 https://udn.com/news/story/7331/5294249 穿越 1 279
## 17457 https://udn.com/news/story/7331/5294249 穿過 1 279
## 17458 https://udn.com/news/story/7331/5294249 英國政府 1 279
## 17459 https://udn.com/news/story/7331/5294249 軍事 1 279
## 17460 https://udn.com/news/story/7331/5294249 重視 1 279
## 17461 https://udn.com/news/story/7331/5294249 飛越 1 279
## 17462 https://udn.com/news/story/7331/5294249 首度 1 279
## 17463 https://udn.com/news/story/7331/5294249 首艘 1 279
## 17464 https://udn.com/news/story/7331/5294249 哨站 1 279
## 17465 https://udn.com/news/story/7331/5294249 峽後將 1 279
## 17466 https://udn.com/news/story/7331/5294249 時機 1 279
## 17467 https://udn.com/news/story/7331/5294249 海牙國際法庭 1 279
## 17468 https://udn.com/news/story/7331/5294249 海浬 1 279
## 17469 https://udn.com/news/story/7331/5294249 秩序 1 279
## 17470 https://udn.com/news/story/7331/5294249 航經 1 279
## 17471 https://udn.com/news/story/7331/5294249 動作 1 279
## 17472 https://udn.com/news/story/7331/5294249 參與 1 279
## 17473 https://udn.com/news/story/7331/5294249 國防部長 1 279
## 17474 https://udn.com/news/story/7331/5294249 國際法 1 279
## 17475 https://udn.com/news/story/7331/5294249 將印 1 279
## 17476 https://udn.com/news/story/7331/5294249 專家 1 279
## 17477 https://udn.com/news/story/7331/5294249 常設 1 279
## 17478 https://udn.com/news/story/7331/5294249 強化 1 279
## 17479 https://udn.com/news/story/7331/5294249 強調 1 279
## 17480 https://udn.com/news/story/7331/5294249 被視 1 279
## 17481 https://udn.com/news/story/7331/5294249 規定 1 279
## 17482 https://udn.com/news/story/7331/5294249 這也成 1 279
## 17483 https://udn.com/news/story/7331/5294249 這次 1 279
## 17484 https://udn.com/news/story/7331/5294249 這從 1 279
## 17485 https://udn.com/news/story/7331/5294249 麻六甲海 1 279
## 17486 https://udn.com/news/story/7331/5294249 博弈 1 279
## 17487 https://udn.com/news/story/7331/5294249 報導 1 279
## 17488 https://udn.com/news/story/7331/5294249 就此 1 279
## 17489 https://udn.com/news/story/7331/5294249 幾乎 1 279
## 17490 https://udn.com/news/story/7331/5294249 幾年 1 279
## 17491 https://udn.com/news/story/7331/5294249 發言人 1 279
## 17492 https://udn.com/news/story/7331/5294249 視為 1 279
## 17493 https://udn.com/news/story/7331/5294249 距離 1 279
## 17494 https://udn.com/news/story/7331/5294249 勢必 1 279
## 17495 https://udn.com/news/story/7331/5294249 意見 1 279
## 17496 https://udn.com/news/story/7331/5294249 新動向 1 279
## 17497 https://udn.com/news/story/7331/5294249 準則 1 279
## 17498 https://udn.com/news/story/7331/5294249 禁運 1 279
## 17499 https://udn.com/news/story/7331/5294249 違反 1 279
## 17500 https://udn.com/news/story/7331/5294249 實際上 1 279
## 17501 https://udn.com/news/story/7331/5294249 旗號 1 279
## 17502 https://udn.com/news/story/7331/5294249 監視 1 279
## 17503 https://udn.com/news/story/7331/5294249 維護者 1 279
## 17504 https://udn.com/news/story/7331/5294249 認為 1 279
## 17505 https://udn.com/news/story/7331/5294249 價值 1 279
## 17506 https://udn.com/news/story/7331/5294249 廣訊報 1 279
## 17507 https://udn.com/news/story/7331/5294249 潛艇 1 279
## 17508 https://udn.com/news/story/7331/5294249 範圍 1 279
## 17509 https://udn.com/news/story/7331/5294249 選項 1 279
## 17510 https://udn.com/news/story/7331/5294249 選擇 1 279
## 17511 https://udn.com/news/story/7331/5294249 隨後 1 279
## 17512 https://udn.com/news/story/7331/5294249 優先 1 279
## 17513 https://udn.com/news/story/7331/5294249 聲稱 1 279
## 17514 https://udn.com/news/story/7331/5294249 藉口 1 279
## 17515 https://udn.com/news/story/7331/5294249 競爭 1 279
## 17516 https://udn.com/news/story/7331/5294249 顯示 1 279
## 17517 https://udn.com/news/story/7331/5301066 一種 1 270
## 17518 https://udn.com/news/story/7331/5301066 人為 1 270
## 17519 https://udn.com/news/story/7331/5301066 三個 1 270
## 17520 https://udn.com/news/story/7331/5301066 下午 1 270
## 17521 https://udn.com/news/story/7331/5301066 已故 1 270
## 17522 https://udn.com/news/story/7331/5301066 干涉 1 270
## 17523 https://udn.com/news/story/7331/5301066 不同 1 270
## 17524 https://udn.com/news/story/7331/5301066 不在乎 1 270
## 17525 https://udn.com/news/story/7331/5301066 不時 1 270
## 17526 https://udn.com/news/story/7331/5301066 不帶 1 270
## 17527 https://udn.com/news/story/7331/5301066 不亂 1 270
## 17528 https://udn.com/news/story/7331/5301066 中共 1 270
## 17529 https://udn.com/news/story/7331/5301066 中西方 1 270
## 17530 https://udn.com/news/story/7331/5301066 中美 1 270
## 17531 https://udn.com/news/story/7331/5301066 中美為 1 270
## 17532 https://udn.com/news/story/7331/5301066 中美關係 1 270
## 17533 https://udn.com/news/story/7331/5301066 中國共產黨 1 270
## 17534 https://udn.com/news/story/7331/5301066 中國政府 1 270
## 17535 https://udn.com/news/story/7331/5301066 今天 1 270
## 17536 https://udn.com/news/story/7331/5301066 內政 1 270
## 17537 https://udn.com/news/story/7331/5301066 公正 1 270
## 17538 https://udn.com/news/story/7331/5301066 分歧 1 270
## 17539 https://udn.com/news/story/7331/5301066 切實 1 270
## 17540 https://udn.com/news/story/7331/5301066 反指 1 270
## 17541 https://udn.com/news/story/7331/5301066 文字 1 270
## 17542 https://udn.com/news/story/7331/5301066 毛澤東 1 270
## 17543 https://udn.com/news/story/7331/5301066 王毅則 1 270
## 17544 https://udn.com/news/story/7331/5301066 以此 1 270
## 17545 https://udn.com/news/story/7331/5301066 充分認識 1 270
## 17546 https://udn.com/news/story/7331/5301066 包括 1 270
## 17547 https://udn.com/news/story/7331/5301066 史諾 1 270
## 17548 https://udn.com/news/story/7331/5301066 外交政策 1 270
## 17549 https://udn.com/news/story/7331/5301066 外交部長 1 270
## 17550 https://udn.com/news/story/7331/5301066 打著 1 270
## 17551 https://udn.com/news/story/7331/5301066 打壓 1 270
## 17552 https://udn.com/news/story/7331/5301066 未見 1 270
## 17553 https://udn.com/news/story/7331/5301066 本國 1 270
## 17554 https://udn.com/news/story/7331/5301066 本質 1 270
## 17555 https://udn.com/news/story/7331/5301066 目的 1 270
## 17556 https://udn.com/news/story/7331/5301066 企圖 1 270
## 17557 https://udn.com/news/story/7331/5301066 全國人大 1 270
## 17558 https://udn.com/news/story/7331/5301066 全國人民代表大會 1 270
## 17559 https://udn.com/news/story/7331/5301066 回應 1 270
## 17560 https://udn.com/news/story/7331/5301066 地區 1 270
## 17561 https://udn.com/news/story/7331/5301066 安全 1 270
## 17562 https://udn.com/news/story/7331/5301066 年代 1 270
## 17563 https://udn.com/news/story/7331/5301066 成為 1 270
## 17564 https://udn.com/news/story/7331/5301066 有效 1 270
## 17565 https://udn.com/news/story/7331/5301066 灰黑 1 270
## 17566 https://udn.com/news/story/7331/5301066 自由 1 270
## 17567 https://udn.com/news/story/7331/5301066 西藏 1 270
## 17568 https://udn.com/news/story/7331/5301066 作出 1 270
## 17569 https://udn.com/news/story/7331/5301066 別國 1 270
## 17570 https://udn.com/news/story/7331/5301066 妥協 1 270
## 17571 https://udn.com/news/story/7331/5301066 尾聲 1 270
## 17572 https://udn.com/news/story/7331/5301066 抗擊 1 270
## 17573 https://udn.com/news/story/7331/5301066 更多 1 270
## 17574 https://udn.com/news/story/7331/5301066 良知 1 270
## 17575 https://udn.com/news/story/7331/5301066 防止 1 270
## 17576 https://udn.com/news/story/7331/5301066 並指 1 270
## 17577 https://udn.com/news/story/7331/5301066 兩國關係 1 270
## 17578 https://udn.com/news/story/7331/5301066 和平 1 270
## 17579 https://udn.com/news/story/7331/5301066 延安 1 270
## 17580 https://udn.com/news/story/7331/5301066 所謂 1 270
## 17581 https://udn.com/news/story/7331/5301066 抹黑 1 270
## 17582 https://udn.com/news/story/7331/5301066 放在 1 270
## 17583 https://udn.com/news/story/7331/5301066 直播 1 270
## 17584 https://udn.com/news/story/7331/5301066 阻礙 1 270
## 17585 https://udn.com/news/story/7331/5301066 客觀 1 270
## 17586 https://udn.com/news/story/7331/5301066 後續 1 270
## 17587 https://udn.com/news/story/7331/5301066 挑撥離間 1 270
## 17588 https://udn.com/news/story/7331/5301066 政府 1 270
## 17589 https://udn.com/news/story/7331/5301066 政策 1 270
## 17590 https://udn.com/news/story/7331/5301066 疫情 1 270
## 17591 https://udn.com/news/story/7331/5301066 相機 1 270
## 17592 https://udn.com/news/story/7331/5301066 美方 1 270
## 17593 https://udn.com/news/story/7331/5301066 美顏 1 270
## 17594 https://udn.com/news/story/7331/5301066 面前 1 270
## 17595 https://udn.com/news/story/7331/5301066 香港 1 270
## 17596 https://udn.com/news/story/7331/5301066 時代 1 270
## 17597 https://udn.com/news/story/7331/5301066 時則 1 270
## 17598 https://udn.com/news/story/7331/5301066 氣候變化 1 270
## 17599 https://udn.com/news/story/7331/5301066 涉疆 1 270
## 17600 https://udn.com/news/story/7331/5301066 真相 1 270
## 17601 https://udn.com/news/story/7331/5301066 真實 1 270
## 17602 https://udn.com/news/story/7331/5301066 航行 1 270
## 17603 https://udn.com/news/story/7331/5301066 追求 1 270
## 17604 https://udn.com/news/story/7331/5301066 陝北 1 270
## 17605 https://udn.com/news/story/7331/5301066 高度 1 270
## 17606 https://udn.com/news/story/7331/5301066 偏見 1 270
## 17607 https://udn.com/news/story/7331/5301066 側重 1 270
## 17608 https://udn.com/news/story/7331/5301066 唯我獨尊 1 270
## 17609 https://udn.com/news/story/7331/5301066 唯恐 1 270
## 17610 https://udn.com/news/story/7331/5301066 問到 1 270
## 17611 https://udn.com/news/story/7331/5301066 國務委員 1 270
## 17612 https://udn.com/news/story/7331/5301066 國情 1 270
## 17613 https://udn.com/news/story/7331/5301066 堅守 1 270
## 17614 https://udn.com/news/story/7331/5301066 強調 1 270
## 17615 https://udn.com/news/story/7331/5301066 採訪 1 270
## 17616 https://udn.com/news/story/7331/5301066 探討 1 270
## 17617 https://udn.com/news/story/7331/5301066 接近 1 270
## 17618 https://udn.com/news/story/7331/5301066 敏感性 1 270
## 17619 https://udn.com/news/story/7331/5301066 深化 1 270
## 17620 https://udn.com/news/story/7331/5301066 清單 1 270
## 17621 https://udn.com/news/story/7331/5301066 符合 1 270
## 17622 https://udn.com/news/story/7331/5301066 被控 1 270
## 17623 https://udn.com/news/story/7331/5301066 透過 1 270
## 17624 https://udn.com/news/story/7331/5301066 喊話 1 270
## 17625 https://udn.com/news/story/7331/5301066 場合 1 270
## 17626 https://udn.com/news/story/7331/5301066 媒詢 1 270
## 17627 https://udn.com/news/story/7331/5301066 復甦 1 270
## 17628 https://udn.com/news/story/7331/5301066 提及 1 270
## 17629 https://udn.com/news/story/7331/5301066 提出 1 270
## 17630 https://udn.com/news/story/7331/5301066 提問 1 270
## 17631 https://udn.com/news/story/7331/5301066 敦促 1 270
## 17632 https://udn.com/news/story/7331/5301066 焦距 1 270
## 17633 https://udn.com/news/story/7331/5301066 發展壯大 1 270
## 17634 https://udn.com/news/story/7331/5301066 開放 1 270
## 17635 https://udn.com/news/story/7331/5301066 新一屆 1 270
## 17636 https://udn.com/news/story/7331/5301066 新華網 1 270
## 17637 https://udn.com/news/story/7331/5301066 新疆地區 1 270
## 17638 https://udn.com/news/story/7331/5301066 溝通 1 270
## 17639 https://udn.com/news/story/7331/5301066 經濟 1 270
## 17640 https://udn.com/news/story/7331/5301066 詢及 1 270
## 17641 https://udn.com/news/story/7331/5301066 鼓吹 1 270
## 17642 https://udn.com/news/story/7331/5301066 實施 1 270
## 17643 https://udn.com/news/story/7331/5301066 對台 1 270
## 17644 https://udn.com/news/story/7331/5301066 對外 1 270
## 17645 https://udn.com/news/story/7331/5301066 對此 1 270
## 17646 https://udn.com/news/story/7331/5301066 對抗 1 270
## 17647 https://udn.com/news/story/7331/5301066 對美 1 270
## 17648 https://udn.com/news/story/7331/5301066 對準 1 270
## 17649 https://udn.com/news/story/7331/5301066 對話 1 270
## 17650 https://udn.com/news/story/7331/5301066 態度 1 270
## 17651 https://udn.com/news/story/7331/5301066 旗號 1 270
## 17652 https://udn.com/news/story/7331/5301066 種族滅絕 1 270
## 17653 https://udn.com/news/story/7331/5301066 管控 1 270
## 17654 https://udn.com/news/story/7331/5301066 與己 1 270
## 17655 https://udn.com/news/story/7331/5301066 製造 1 270
## 17656 https://udn.com/news/story/7331/5301066 誤判 1 270
## 17657 https://udn.com/news/story/7331/5301066 說明 1 270
## 17658 https://udn.com/news/story/7331/5301066 需要 1 270
## 17659 https://udn.com/news/story/7331/5301066 領導人 1 270
## 17660 https://udn.com/news/story/7331/5301066 熱衷於 1 270
## 17661 https://udn.com/news/story/7331/5301066 衝突 1 270
## 17662 https://udn.com/news/story/7331/5301066 論述 1 270
## 17663 https://udn.com/news/story/7331/5301066 餘地 1 270
## 17664 https://udn.com/news/story/7331/5301066 戰略 1 270
## 17665 https://udn.com/news/story/7331/5301066 興風作浪 1 270
## 17666 https://udn.com/news/story/7331/5301066 頻頻 1 270
## 17667 https://udn.com/news/story/7331/5301066 聯合公報 1 270
## 17668 https://udn.com/news/story/7331/5301066 聲稱 1 270
## 17669 https://udn.com/news/story/7331/5301066 避免 1 270
## 17670 https://udn.com/news/story/7331/5301066 邀請 1 270
## 17671 https://udn.com/news/story/7331/5301066 擾亂 1 270
## 17672 https://udn.com/news/story/7331/5301066 濾鏡 1 270
## 17673 https://udn.com/news/story/7331/5301066 雙方 1 270
## 17674 https://udn.com/news/story/7331/5301066 雙邊 1 270
## 17675 https://udn.com/news/story/7331/5301066 關係 1 270
## 17676 https://udn.com/news/story/7331/5301066 關鍵在於 1 270
## 17677 https://udn.com/news/story/7331/5301066 願本 1 270
## 17678 https://udn.com/news/story/7331/5301066 競爭 1 270
## 17679 https://udn.com/news/story/7331/5301066 霸權 1 270
## 17680 https://udn.com/news/story/7331/5301066 讓步 1 270
## 17681 https://udn.com/news/story/7331/5309836 一系列 1 100
## 17682 https://udn.com/news/story/7331/5309836 上任 1 100
## 17683 https://udn.com/news/story/7331/5309836 中心 1 100
## 17684 https://udn.com/news/story/7331/5309836 中方 1 100
## 17685 https://udn.com/news/story/7331/5309836 中央 1 100
## 17686 https://udn.com/news/story/7331/5309836 中共中央政治局 1 100
## 17687 https://udn.com/news/story/7331/5309836 中美 1 100
## 17688 https://udn.com/news/story/7331/5309836 中高層 1 100
## 17689 https://udn.com/news/story/7331/5309836 中國 1 100
## 17690 https://udn.com/news/story/7331/5309836 今次 1 100
## 17691 https://udn.com/news/story/7331/5309836 分歧 1 100
## 17692 https://udn.com/news/story/7331/5309836 引述 1 100
## 17693 https://udn.com/news/story/7331/5309836 引起 1 100
## 17694 https://udn.com/news/story/7331/5309836 方面 1 100
## 17695 https://udn.com/news/story/7331/5309836 日本 1 100
## 17696 https://udn.com/news/story/7331/5309836 日前 1 100
## 17697 https://udn.com/news/story/7331/5309836 王毅 1 100
## 17698 https://udn.com/news/story/7331/5309836 主任 1 100
## 17699 https://udn.com/news/story/7331/5309836 包括 1 100
## 17700 https://udn.com/news/story/7331/5309836 半徑 1 100
## 17701 https://udn.com/news/story/7331/5309836 另據 1 100
## 17702 https://udn.com/news/story/7331/5309836 外事辦 1 100
## 17703 https://udn.com/news/story/7331/5309836 外長 1 100
## 17704 https://udn.com/news/story/7331/5309836 白宮 1 100
## 17705 https://udn.com/news/story/7331/5309836 安全 1 100
## 17706 https://udn.com/news/story/7331/5309836 安克雷奇 1 100
## 17707 https://udn.com/news/story/7331/5309836 委員 1 100
## 17708 https://udn.com/news/story/7331/5309836 官網 1 100
## 17709 https://udn.com/news/story/7331/5309836 表示 1 100
## 17710 https://udn.com/news/story/7331/5309836 阿拉斯加 1 100
## 17711 https://udn.com/news/story/7331/5309836 前夕 1 100
## 17712 https://udn.com/news/story/7331/5309836 南韓 1 100
## 17713 https://udn.com/news/story/7331/5309836 拜登 1 100
## 17714 https://udn.com/news/story/7331/5309836 星島 1 100
## 17715 https://udn.com/news/story/7331/5309836 美國 1 100
## 17716 https://udn.com/news/story/7331/5309836 美國國務院 1 100
## 17717 https://udn.com/news/story/7331/5309836 首個 1 100
## 17718 https://udn.com/news/story/7331/5309836 展開討論 1 100
## 17719 https://udn.com/news/story/7331/5309836 時至 1 100
## 17720 https://udn.com/news/story/7331/5309836 時機 1 100
## 17721 https://udn.com/news/story/7331/5309836 海里 1 100
## 17722 https://udn.com/news/story/7331/5309836 消息 1 100
## 17723 https://udn.com/news/story/7331/5309836 高層 1 100
## 17724 https://udn.com/news/story/7331/5309836 區域 1 100
## 17725 https://udn.com/news/story/7331/5309836 國家 1 100
## 17726 https://udn.com/news/story/7331/5309836 國務委員 1 100
## 17727 https://udn.com/news/story/7331/5309836 國務卿 1 100
## 17728 https://udn.com/news/story/7331/5309836 將在 1 100
## 17729 https://udn.com/news/story/7331/5309836 將會 1 100
## 17730 https://udn.com/news/story/7331/5309836 敏感 1 100
## 17731 https://udn.com/news/story/7331/5309836 清瀾 1 100
## 17732 https://udn.com/news/story/7331/5309836 訪問 1 100
## 17733 https://udn.com/news/story/7331/5309836 部分 1 100
## 17734 https://udn.com/news/story/7331/5309836 報導 1 100
## 17735 https://udn.com/news/story/7331/5309836 發布 1 100
## 17736 https://udn.com/news/story/7331/5309836 發言人 1 100
## 17737 https://udn.com/news/story/7331/5309836 結束 1 100
## 17738 https://udn.com/news/story/7331/5309836 圓形 1 100
## 17739 https://udn.com/news/story/7331/5309836 會面 1 100
## 17740 https://udn.com/news/story/7331/5309836 會晤 1 100
## 17741 https://udn.com/news/story/7331/5309836 會談 1 100
## 17742 https://udn.com/news/story/7331/5309836 楊潔篪 1 100
## 17743 https://udn.com/news/story/7331/5309836 禁止 1 100
## 17744 https://udn.com/news/story/7331/5309836 對話 1 100
## 17745 https://udn.com/news/story/7331/5309836 駛入 1 100
## 17746 https://udn.com/news/story/7331/5309836 關注 1 100
## 17747 https://udn.com/news/story/7331/5309836 顧問 1 100
## 17748 https://udn.com/news/story/7331/5358554 一度 1 86
## 17749 https://udn.com/news/story/7331/5358554 人工島 1 86
## 17750 https://udn.com/news/story/7331/5358554 中菲 1 86
## 17751 https://udn.com/news/story/7331/5358554 今日 1 86
## 17752 https://udn.com/news/story/7331/5358554 六大 1 86
## 17753 https://udn.com/news/story/7331/5358554 天氣 1 86
## 17754 https://udn.com/news/story/7331/5358554 外交部 1 86
## 17755 https://udn.com/news/story/7331/5358554 必須 1 86
## 17756 https://udn.com/news/story/7331/5358554 民兵 1 86
## 17757 https://udn.com/news/story/7331/5358554 立即 1 86
## 17758 https://udn.com/news/story/7331/5358554 再度 1 86
## 17759 https://udn.com/news/story/7331/5358554 回應 1 86
## 17760 https://udn.com/news/story/7331/5358554 侵害 1 86
## 17761 https://udn.com/news/story/7331/5358554 威脅 1 86
## 17762 https://udn.com/news/story/7331/5358554 指控 1 86
## 17763 https://udn.com/news/story/7331/5358554 政府 1 86
## 17764 https://udn.com/news/story/7331/5358554 星島日報 1 86
## 17765 https://udn.com/news/story/7331/5358554 珊湖 1 86
## 17766 https://udn.com/news/story/7331/5358554 要求 1 86
## 17767 https://udn.com/news/story/7331/5358554 軍艦 1 86
## 17768 https://udn.com/news/story/7331/5358554 迫令 1 86
## 17769 https://udn.com/news/story/7331/5358554 飛越 1 86
## 17770 https://udn.com/news/story/7331/5358554 專屬經濟區 1 86
## 17771 https://udn.com/news/story/7331/5358554 強調 1 86
## 17772 https://udn.com/news/story/7331/5358554 控制 1 86
## 17773 https://udn.com/news/story/7331/5358554 控訴 1 86
## 17774 https://udn.com/news/story/7331/5358554 船艦 1 86
## 17775 https://udn.com/news/story/7331/5358554 這批 1 86
## 17776 https://udn.com/news/story/7331/5358554 報導 1 86
## 17777 https://udn.com/news/story/7331/5358554 惡劣 1 86
## 17778 https://udn.com/news/story/7331/5358554 超過 1 86
## 17779 https://udn.com/news/story/7331/5358554 進入 1 86
## 17780 https://udn.com/news/story/7331/5358554 集結 1 86
## 17781 https://udn.com/news/story/7331/5358554 會合 1 86
## 17782 https://udn.com/news/story/7331/5358554 當局 1 86
## 17783 https://udn.com/news/story/7331/5358554 經濟區 1 86
## 17784 https://udn.com/news/story/7331/5358554 蜂擁 1 86
## 17785 https://udn.com/news/story/7331/5358554 躲避 1 86
## 17786 https://udn.com/news/story/7331/5358554 對峙 1 86
## 17787 https://udn.com/news/story/7331/5358554 旗幟 1 86
## 17788 https://udn.com/news/story/7331/5358554 構成威脅 1 86
## 17789 https://udn.com/news/story/7331/5358554 暫時 1 86
## 17790 https://udn.com/news/story/7331/5358554 駛離 1 86
## 17791 https://udn.com/news/story/7331/5358554 戰機 1 86
## 17792 https://udn.com/news/story/7331/5358554 擁有 1 86
## 17793 https://udn.com/news/story/7331/5358554 避風 1 86
## 17794 https://udn.com/news/story/7331/5358554 離開 1 86
## 17795 https://udn.com/news/story/7331/5358554 懸掛 1 86
## 17796 https://udn.com/news/story/7331/5359369 一名 1 121
## 17797 https://udn.com/news/story/7331/5359369 一直 1 121
## 17798 https://udn.com/news/story/7331/5359369 不願 1 121
## 17799 https://udn.com/news/story/7331/5359369 中方 1 121
## 17800 https://udn.com/news/story/7331/5359369 之際 1 121
## 17801 https://udn.com/news/story/7331/5359369 分別 1 121
## 17802 https://udn.com/news/story/7331/5359369 升溫 1 121
## 17803 https://udn.com/news/story/7331/5359369 反對 1 121
## 17804 https://udn.com/news/story/7331/5359369 出港 1 121
## 17805 https://udn.com/news/story/7331/5359369 加大 1 121
## 17806 https://udn.com/news/story/7331/5359369 本周 1 121
## 17807 https://udn.com/news/story/7331/5359369 民兵 1 121
## 17808 https://udn.com/news/story/7331/5359369 存在 1 121
## 17809 https://udn.com/news/story/7331/5359369 安扎克 1 121
## 17810 https://udn.com/news/story/7331/5359369 自由 1 121
## 17811 https://udn.com/news/story/7331/5359369 局勢 1 121
## 17812 https://udn.com/news/story/7331/5359369 希望 1 121
## 17813 https://udn.com/news/story/7331/5359369 抗議 1 121
## 17814 https://udn.com/news/story/7331/5359369 姓名 1 121
## 17815 https://udn.com/news/story/7331/5359369 官員 1 121
## 17816 https://udn.com/news/story/7331/5359369 近日 1 121
## 17817 https://udn.com/news/story/7331/5359369 則指 1 121
## 17818 https://udn.com/news/story/7331/5359369 前往 1 121
## 17819 https://udn.com/news/story/7331/5359369 挑動 1 121
## 17820 https://udn.com/news/story/7331/5359369 活動 1 121
## 17821 https://udn.com/news/story/7331/5359369 為名 1 121
## 17822 https://udn.com/news/story/7331/5359369 相關 1 121
## 17823 https://udn.com/news/story/7331/5359369 軌跡 1 121
## 17824 https://udn.com/news/story/7331/5359369 軍事 1 121
## 17825 https://udn.com/news/story/7331/5359369 軍艦 1 121
## 17826 https://udn.com/news/story/7331/5359369 時機 1 121
## 17827 https://udn.com/news/story/7331/5359369 氣氛 1 121
## 17828 https://udn.com/news/story/7331/5359369 海域 1 121
## 17829 https://udn.com/news/story/7331/5359369 航行 1 121
## 17830 https://udn.com/news/story/7331/5359369 堅決 1 121
## 17831 https://udn.com/news/story/7331/5359369 控制 1 121
## 17832 https://udn.com/news/story/7331/5359369 敏感 1 121
## 17833 https://udn.com/news/story/7331/5359369 透露 1 121
## 17834 https://udn.com/news/story/7331/5359369 途經 1 121
## 17835 https://udn.com/news/story/7331/5359369 陸媒 1 121
## 17836 https://udn.com/news/story/7331/5359369 期間 1 121
## 17837 https://udn.com/news/story/7331/5359369 無事生非 1 121
## 17838 https://udn.com/news/story/7331/5359369 菲律賓 1 121
## 17839 https://udn.com/news/story/7331/5359369 越南 1 121
## 17840 https://udn.com/news/story/7331/5359369 進入 1 121
## 17841 https://udn.com/news/story/7331/5359369 集結 1 121
## 17842 https://udn.com/news/story/7331/5359369 新加坡 1 121
## 17843 https://udn.com/news/story/7331/5359369 圖源 1 121
## 17844 https://udn.com/news/story/7331/5359369 漁船 1 121
## 17845 https://udn.com/news/story/7331/5359369 監視 1 121
## 17846 https://udn.com/news/story/7331/5359369 緊張 1 121
## 17847 https://udn.com/news/story/7331/5359369 製造 1 121
## 17848 https://udn.com/news/story/7331/5359369 廣播公司 1 121
## 17849 https://udn.com/news/story/7331/5359369 數百艘 1 121
## 17850 https://udn.com/news/story/7331/5359369 澳大利亞 1 121
## 17851 https://udn.com/news/story/7331/5359369 曝光 1 121
## 17852 https://udn.com/news/story/7331/5365152 一路 1 217
## 17853 https://udn.com/news/story/7331/5365152 上午 1 217
## 17854 https://udn.com/news/story/7331/5365152 大幅 1 217
## 17855 https://udn.com/news/story/7331/5365152 中共 1 217
## 17856 https://udn.com/news/story/7331/5365152 今年 1 217
## 17857 https://udn.com/news/story/7331/5365152 今晨 1 217
## 17858 https://udn.com/news/story/7331/5365152 公布 1 217
## 17859 https://udn.com/news/story/7331/5365152 引發 1 217
## 17860 https://udn.com/news/story/7331/5365152 心理戰 1 217
## 17861 https://udn.com/news/story/7331/5365152 月底 1 217
## 17862 https://udn.com/news/story/7331/5365152 水域 1 217
## 17863 https://udn.com/news/story/7331/5365152 主任 1 217
## 17864 https://udn.com/news/story/7331/5365152 他並 1 217
## 17865 https://udn.com/news/story/7331/5365152 以來 1 217
## 17866 https://udn.com/news/story/7331/5365152 出發 1 217
## 17867 https://udn.com/news/story/7331/5365152 包括 1 217
## 17868 https://udn.com/news/story/7331/5365152 民眾 1 217
## 17869 https://udn.com/news/story/7331/5365152 目的 1 217
## 17870 https://udn.com/news/story/7331/5365152 企圖 1 217
## 17871 https://udn.com/news/story/7331/5365152 向南 1 217
## 17872 https://udn.com/news/story/7331/5365152 有利於 1 217
## 17873 https://udn.com/news/story/7331/5365152 自由 1 217
## 17874 https://udn.com/news/story/7331/5365152 自動識別 1 217
## 17875 https://udn.com/news/story/7331/5365152 行動 1 217
## 17876 https://udn.com/news/story/7331/5365152 利用 1 217
## 17877 https://udn.com/news/story/7331/5365152 巡洋艦 1 217
## 17878 https://udn.com/news/story/7331/5365152 每年 1 217
## 17879 https://udn.com/news/story/7331/5365152 系統 1 217
## 17880 https://udn.com/news/story/7331/5365152 邦克山 1 217
## 17881 https://udn.com/news/story/7331/5365152 兩棲 1 217
## 17882 https://udn.com/news/story/7331/5365152 周邊 1 217
## 17883 https://udn.com/news/story/7331/5365152 官媒 1 217
## 17884 https://udn.com/news/story/7331/5365152 社交 1 217
## 17885 https://udn.com/news/story/7331/5365152 金剛 1 217
## 17886 https://udn.com/news/story/7331/5365152 附近 1 217
## 17887 https://udn.com/news/story/7331/5365152 信號 1 217
## 17888 https://udn.com/news/story/7331/5365152 前往 1 217
## 17889 https://udn.com/news/story/7331/5365152 建立 1 217
## 17890 https://udn.com/news/story/7331/5365152 指其 1 217
## 17891 https://udn.com/news/story/7331/5365152 指揮艦 1 217
## 17892 https://udn.com/news/story/7331/5365152 研究院 1 217
## 17893 https://udn.com/news/story/7331/5365152 穿越 1 217
## 17894 https://udn.com/news/story/7331/5365152 突然性 1 217
## 17895 https://udn.com/news/story/7331/5365152 約數 1 217
## 17896 https://udn.com/news/story/7331/5365152 美國 1 217
## 17897 https://udn.com/news/story/7331/5365152 美國軍艦 1 217
## 17898 https://udn.com/news/story/7331/5365152 美艦 1 217
## 17899 https://udn.com/news/story/7331/5365152 胡波 1 217
## 17900 https://udn.com/news/story/7331/5365152 軌跡 1 217
## 17901 https://udn.com/news/story/7331/5365152 降低 1 217
## 17902 https://udn.com/news/story/7331/5365152 徑直 1 217
## 17903 https://udn.com/news/story/7331/5365152 海上 1 217
## 17904 https://udn.com/news/story/7331/5365152 海峽 1 217
## 17905 https://udn.com/news/story/7331/5365152 航空母艦 1 217
## 17906 https://udn.com/news/story/7331/5365152 航經 1 217
## 17907 https://udn.com/news/story/7331/5365152 假消息 1 217
## 17908 https://udn.com/news/story/7331/5365152 動向 1 217
## 17909 https://udn.com/news/story/7331/5365152 動作 1 217
## 17910 https://udn.com/news/story/7331/5365152 國防 1 217
## 17911 https://udn.com/news/story/7331/5365152 強而 1 217
## 17912 https://udn.com/news/story/7331/5365152 船舶 1 217
## 17913 https://udn.com/news/story/7331/5365152 規律性 1 217
## 17914 https://udn.com/news/story/7331/5365152 透過 1 217
## 17915 https://udn.com/news/story/7331/5365152 這是 1 217
## 17916 https://udn.com/news/story/7331/5365152 部署 1 217
## 17917 https://udn.com/news/story/7331/5365152 麻六甲海 1 217
## 17918 https://udn.com/news/story/7331/5365152 報導 1 217
## 17919 https://udn.com/news/story/7331/5365152 提到 1 217
## 17920 https://udn.com/news/story/7331/5365152 提醒 1 217
## 17921 https://udn.com/news/story/7331/5365152 港口 1 217
## 17922 https://udn.com/news/story/7331/5365152 發文 1 217
## 17923 https://udn.com/news/story/7331/5365152 發布 1 217
## 17924 https://udn.com/news/story/7331/5365152 進出 1 217
## 17925 https://udn.com/news/story/7331/5365152 微博 1 217
## 17926 https://udn.com/news/story/7331/5365152 意味 1 217
## 17927 https://udn.com/news/story/7331/5365152 經由 1 217
## 17928 https://udn.com/news/story/7331/5365152 過去 1 217
## 17929 https://udn.com/news/story/7331/5365152 預料 1 217
## 17930 https://udn.com/news/story/7331/5365152 夥伴關係 1 217
## 17931 https://udn.com/news/story/7331/5365152 實戰 1 217
## 17932 https://udn.com/news/story/7331/5365152 演訓 1 217
## 17933 https://udn.com/news/story/7331/5365152 演習 1 217
## 17934 https://udn.com/news/story/7331/5365152 認知 1 217
## 17935 https://udn.com/news/story/7331/5365152 增加 1 217
## 17936 https://udn.com/news/story/7331/5365152 增強 1 217
## 17937 https://udn.com/news/story/7331/5365152 影響 1 217
## 17938 https://udn.com/news/story/7331/5365152 澎湖 1 217
## 17939 https://udn.com/news/story/7331/5365152 確保 1 217
## 17940 https://udn.com/news/story/7331/5365152 導向飛彈 1 217
## 17941 https://udn.com/news/story/7331/5365152 整理 1 217
## 17942 https://udn.com/news/story/7331/5365152 橫須賀 1 217
## 17943 https://udn.com/news/story/7331/5365152 頻率 1 217
## 17944 https://udn.com/news/story/7331/5365152 環球時報 1 217
## 17945 https://udn.com/news/story/7331/5365152 聯合 1 217
## 17946 https://udn.com/news/story/7331/5365152 輿論 1 217
## 17947 https://udn.com/news/story/7331/5365152 隸屬於 1 217
## 17948 https://udn.com/news/story/7331/5365152 藍嶺號 1 217
## 17949 https://udn.com/news/story/7331/5365152 魏柏號 1 217
## 17950 https://udn.com/news/story/7331/5365152 羅素 1 217
## 17951 https://udn.com/news/story/7331/5365152 關注 1 217
## 17952 https://udn.com/news/story/7331/5365152 屬勃克級 1 217
## 17953 https://udn.com/news/story/7331/5365152 變得 1 217
## 17954 https://udn.com/news/story/7331/5365152 顯著 1 217
## 17955 https://udn.com/news/story/7331/5388998 一場場 1 126
## 17956 https://udn.com/news/story/7331/5388998 不遠處 1 126
## 17957 https://udn.com/news/story/7331/5388998 之間 1 126
## 17958 https://udn.com/news/story/7331/5388998 公布 1 126
## 17959 https://udn.com/news/story/7331/5388998 反對 1 126
## 17960 https://udn.com/news/story/7331/5388998 日至 1 126
## 17961 https://udn.com/news/story/7331/5388998 日到 1 126
## 17962 https://udn.com/news/story/7331/5388998 月份 1 126
## 17963 https://udn.com/news/story/7331/5388998 以來 1 126
## 17964 https://udn.com/news/story/7331/5388998 出聲 1 126
## 17965 https://udn.com/news/story/7331/5388998 台灣 1 126
## 17966 https://udn.com/news/story/7331/5388998 外交部 1 126
## 17967 https://udn.com/news/story/7331/5388998 任後訪 1 126
## 17968 https://udn.com/news/story/7331/5388998 汕尾 1 126
## 17969 https://udn.com/news/story/7331/5388998 西部 1 126
## 17970 https://udn.com/news/story/7331/5388998 協同 1 126
## 17971 https://udn.com/news/story/7331/5388998 披露 1 126
## 17972 https://udn.com/news/story/7331/5388998 拜登 1 126
## 17973 https://udn.com/news/story/7331/5388998 指出 1 126
## 17974 https://udn.com/news/story/7331/5388998 是從 1 126
## 17975 https://udn.com/news/story/7331/5388998 相關 1 126
## 17976 https://udn.com/news/story/7331/5388998 要求 1 126
## 17977 https://udn.com/news/story/7331/5388998 首發 1 126
## 17978 https://udn.com/news/story/7331/5388998 展開 1 126
## 17979 https://udn.com/news/story/7331/5388998 海空 1 126
## 17980 https://udn.com/news/story/7331/5388998 消息 1 126
## 17981 https://udn.com/news/story/7331/5388998 航行 1 126
## 17982 https://udn.com/news/story/7331/5388998 參議員 1 126
## 17983 https://udn.com/news/story/7331/5388998 國台 1 126
## 17984 https://udn.com/news/story/7331/5388998 基地 1 126
## 17985 https://udn.com/news/story/7331/5388998 將於 1 126
## 17986 https://udn.com/news/story/7331/5388998 接連 1 126
## 17987 https://udn.com/news/story/7331/5388998 率團 1 126
## 17988 https://udn.com/news/story/7331/5388998 組織 1 126
## 17989 https://udn.com/news/story/7331/5388998 船舶 1 126
## 17990 https://udn.com/news/story/7331/5388998 訪問 1 126
## 17991 https://udn.com/news/story/7331/5388998 部隊 1 126
## 17992 https://udn.com/news/story/7331/5388998 陶德 1 126
## 17993 https://udn.com/news/story/7331/5388998 陸媒 1 126
## 17994 https://udn.com/news/story/7331/5388998 陸豐 1 126
## 17995 https://udn.com/news/story/7331/5388998 傍晚 1 126
## 17996 https://udn.com/news/story/7331/5388998 登上 1 126
## 17997 https://udn.com/news/story/7331/5388998 進入 1 126
## 17998 https://udn.com/news/story/7331/5388998 禁止 1 126
## 17999 https://udn.com/news/story/7331/5388998 該處 1 126
## 18000 https://udn.com/news/story/7331/5388998 雷州半島 1 126
## 18001 https://udn.com/news/story/7331/5388998 演訓 1 126
## 18002 https://udn.com/news/story/7331/5388998 編隊 1 126
## 18003 https://udn.com/news/story/7331/5388998 頻繁 1 126
## 18004 https://udn.com/news/story/7331/5388998 總統 1 126
## 18005 https://udn.com/news/story/7331/5388998 艦艇 1 126
## 18006 https://udn.com/news/story/7331/5388998 警告 1 126
## 18007 https://udn.com/news/story/7331/5393116 二度 1 100
## 18008 https://udn.com/news/story/7331/5393116 上午 1 100
## 18009 https://udn.com/news/story/7331/5393116 大陸 1 100
## 18010 https://udn.com/news/story/7331/5393116 已經 1 100
## 18011 https://udn.com/news/story/7331/5393116 分至 1 100
## 18012 https://udn.com/news/story/7331/5393116 引述 1 100
## 18013 https://udn.com/news/story/7331/5393116 日本 1 100
## 18014 https://udn.com/news/story/7331/5393116 北部 1 100
## 18015 https://udn.com/news/story/7331/5393116 可能 1 100
## 18016 https://udn.com/news/story/7331/5393116 外海 1 100
## 18017 https://udn.com/news/story/7331/5393116 打開 1 100
## 18018 https://udn.com/news/story/7331/5393116 再次 1 100
## 18019 https://udn.com/news/story/7331/5393116 同日 1 100
## 18020 https://udn.com/news/story/7331/5393116 而後 1 100
## 18021 https://udn.com/news/story/7331/5393116 更近 1 100
## 18022 https://udn.com/news/story/7331/5393116 沖繩 1 100
## 18023 https://udn.com/news/story/7331/5393116 到達 1 100
## 18024 https://udn.com/news/story/7331/5393116 取自 1 100
## 18025 https://udn.com/news/story/7331/5393116 附近 1 100
## 18026 https://udn.com/news/story/7331/5393116 保持 1 100
## 18027 https://udn.com/news/story/7331/5393116 信號 1 100
## 18028 https://udn.com/news/story/7331/5393116 前往 1 100
## 18029 https://udn.com/news/story/7331/5393116 南部 1 100
## 18030 https://udn.com/news/story/7331/5393116 持續 1 100
## 18031 https://udn.com/news/story/7331/5393116 活動 1 100
## 18032 https://udn.com/news/story/7331/5393116 軌跡 1 100
## 18033 https://udn.com/news/story/7331/5393116 時機 1 100
## 18034 https://udn.com/news/story/7331/5393116 海岸 1 100
## 18035 https://udn.com/news/story/7331/5393116 海南島 1 100
## 18036 https://udn.com/news/story/7331/5393116 海浬 1 100
## 18037 https://udn.com/news/story/7331/5393116 真實 1 100
## 18038 https://udn.com/news/story/7331/5393116 航線 1 100
## 18039 https://udn.com/news/story/7331/5393116 起飛 1 100
## 18040 https://udn.com/news/story/7331/5393116 基地 1 100
## 18041 https://udn.com/news/story/7331/5393116 基線 1 100
## 18042 https://udn.com/news/story/7331/5393116 推測 1 100
## 18043 https://udn.com/news/story/7331/5393116 敏感 1 100
## 18044 https://udn.com/news/story/7331/5393116 部分 1 100
## 18045 https://udn.com/news/story/7331/5393116 報導 1 100
## 18046 https://udn.com/news/story/7331/5393116 虛線 1 100
## 18047 https://udn.com/news/story/7331/5393116 距離 1 100
## 18048 https://udn.com/news/story/7331/5393116 進入 1 100
## 18049 https://udn.com/news/story/7331/5393116 感知 1 100
## 18050 https://udn.com/news/story/7331/5393116 嘉手納 1 100
## 18051 https://udn.com/news/story/7331/5393116 實彈射擊 1 100
## 18052 https://udn.com/news/story/7331/5393116 態勢 1 100
## 18053 https://udn.com/news/story/7331/5393116 演習 1 100
## 18054 https://udn.com/news/story/7331/5393116 領海 1 100
## 18055 https://udn.com/news/story/7331/5393116 複雜 1 100
## 18056 https://udn.com/news/story/7331/5393116 戰略 1 100
## 18057 https://udn.com/news/story/7331/5393116 橘色 1 100
## 18058 https://udn.com/news/story/7331/5393116 關閉 1 100
## 18059 https://udn.com/news/story/7331/5393116 觀察者 1 100
## 18060 https://udn.com/news/story/7331/5401625 一直 1 202
## 18061 https://udn.com/news/story/7331/5401625 力量 1 202
## 18062 https://udn.com/news/story/7331/5401625 三輪 1 202
## 18063 https://udn.com/news/story/7331/5401625 上周 1 202
## 18064 https://udn.com/news/story/7331/5401625 上述 1 202
## 18065 https://udn.com/news/story/7331/5401625 工作組 1 202
## 18066 https://udn.com/news/story/7331/5401625 之下 1 202
## 18067 https://udn.com/news/story/7331/5401625 之間 1 202
## 18068 https://udn.com/news/story/7331/5401625 今年 1 202
## 18069 https://udn.com/news/story/7331/5401625 介入 1 202
## 18070 https://udn.com/news/story/7331/5401625 公共 1 202
## 18071 https://udn.com/news/story/7331/5401625 分立 1 202
## 18072 https://udn.com/news/story/7331/5401625 巴馬 1 202
## 18073 https://udn.com/news/story/7331/5401625 方式 1 202
## 18074 https://udn.com/news/story/7331/5401625 日本 1 202
## 18075 https://udn.com/news/story/7331/5401625 主要 1 202
## 18076 https://udn.com/news/story/7331/5401625 主義 1 202
## 18077 https://udn.com/news/story/7331/5401625 主導權 1 202
## 18078 https://udn.com/news/story/7331/5401625 主題 1 202
## 18079 https://udn.com/news/story/7331/5401625 出於 1 202
## 18080 https://udn.com/news/story/7331/5401625 出現 1 202
## 18081 https://udn.com/news/story/7331/5401625 功能 1 202
## 18082 https://udn.com/news/story/7331/5401625 功能性 1 202
## 18083 https://udn.com/news/story/7331/5401625 去年 1 202
## 18084 https://udn.com/news/story/7331/5401625 可能 1 202
## 18085 https://udn.com/news/story/7331/5401625 可控 1 202
## 18086 https://udn.com/news/story/7331/5401625 外部 1 202
## 18087 https://udn.com/news/story/7331/5401625 各方 1 202
## 18088 https://udn.com/news/story/7331/5401625 地區 1 202
## 18089 https://udn.com/news/story/7331/5401625 多邊 1 202
## 18090 https://udn.com/news/story/7331/5401625 存接 1 202
## 18091 https://udn.com/news/story/7331/5401625 西太平洋地區 1 202
## 18092 https://udn.com/news/story/7331/5401625 克服 1 202
## 18093 https://udn.com/news/story/7331/5401625 完成 1 202
## 18094 https://udn.com/news/story/7331/5401625 求同存異 1 202
## 18095 https://udn.com/news/story/7331/5401625 亞洲 1 202
## 18096 https://udn.com/news/story/7331/5401625 放棄 1 202
## 18097 https://udn.com/news/story/7331/5401625 沿國 1 202
## 18098 https://udn.com/news/story/7331/5401625 爭議 1 202
## 18099 https://udn.com/news/story/7331/5401625 秉持 1 202
## 18100 https://udn.com/news/story/7331/5401625 長治久安 1 202
## 18101 https://udn.com/news/story/7331/5401625 長期以來 1 202
## 18102 https://udn.com/news/story/7331/5401625 保持 1 202
## 18103 https://udn.com/news/story/7331/5401625 保持中立 1 202
## 18104 https://udn.com/news/story/7331/5401625 宣言 1 202
## 18105 https://udn.com/news/story/7331/5401625 宣導 1 202
## 18106 https://udn.com/news/story/7331/5401625 拜登 1 202
## 18107 https://udn.com/news/story/7331/5401625 指出 1 202
## 18108 https://udn.com/news/story/7331/5401625 政府 1 202
## 18109 https://udn.com/news/story/7331/5401625 政治 1 202
## 18110 https://udn.com/news/story/7331/5401625 政策 1 202
## 18111 https://udn.com/news/story/7331/5401625 看來 1 202
## 18112 https://udn.com/news/story/7331/5401625 研究院 1 202
## 18113 https://udn.com/news/story/7331/5401625 美方 1 202
## 18114 https://udn.com/news/story/7331/5401625 美日 1 202
## 18115 https://udn.com/news/story/7331/5401625 背後 1 202
## 18116 https://udn.com/news/story/7331/5401625 原則 1 202
## 18117 https://udn.com/news/story/7331/5401625 島礁 1 202
## 18118 https://udn.com/news/story/7331/5401625 時間表 1 202
## 18119 https://udn.com/news/story/7331/5401625 框架 1 202
## 18120 https://udn.com/news/story/7331/5401625 院長 1 202
## 18121 https://udn.com/news/story/7331/5401625 區域 1 202
## 18122 https://udn.com/news/story/7331/5401625 唯一 1 202
## 18123 https://udn.com/news/story/7331/5401625 問題 1 202
## 18124 https://udn.com/news/story/7331/5401625 基於 1 202
## 18125 https://udn.com/news/story/7331/5401625 推出 1 202
## 18126 https://udn.com/news/story/7331/5401625 救援 1 202
## 18127 https://udn.com/news/story/7331/5401625 牽制 1 202
## 18128 https://udn.com/news/story/7331/5401625 產品 1 202
## 18129 https://udn.com/news/story/7331/5401625 略圖 1 202
## 18130 https://udn.com/news/story/7331/5401625 第二 1 202
## 18131 https://udn.com/news/story/7331/5401625 逐步推進 1 202
## 18132 https://udn.com/news/story/7331/5401625 麻煩 1 202
## 18133 https://udn.com/news/story/7331/5401625 博鰲 1 202
## 18134 https://udn.com/news/story/7331/5401625 圍繞 1 202
## 18135 https://udn.com/news/story/7331/5401625 提供 1 202
## 18136 https://udn.com/news/story/7331/5401625 提高 1 202
## 18137 https://udn.com/news/story/7331/5401625 最後 1 202
## 18138 https://udn.com/news/story/7331/5401625 登上 1 202
## 18139 https://udn.com/news/story/7331/5401625 新冠 1 202
## 18140 https://udn.com/news/story/7331/5401625 遏制 1 202
## 18141 https://udn.com/news/story/7331/5401625 對華 1 202
## 18142 https://udn.com/news/story/7331/5401625 對話 1 202
## 18143 https://udn.com/news/story/7331/5401625 構建 1 202
## 18144 https://udn.com/news/story/7331/5401625 聚焦 1 202
## 18145 https://udn.com/news/story/7331/5401625 與川普 1 202
## 18146 https://udn.com/news/story/7331/5401625 製造 1 202
## 18147 https://udn.com/news/story/7331/5401625 認為 1 202
## 18148 https://udn.com/news/story/7331/5401625 需要 1 202
## 18149 https://udn.com/news/story/7331/5401625 領域 1 202
## 18150 https://udn.com/news/story/7331/5401625 領導人 1 202
## 18151 https://udn.com/news/story/7331/5401625 層面 1 202
## 18152 https://udn.com/news/story/7331/5401625 影響 1 202
## 18153 https://udn.com/news/story/7331/5401625 歐洲 1 202
## 18154 https://udn.com/news/story/7331/5401625 線上 1 202
## 18155 https://udn.com/news/story/7331/5401625 鞏固 1 202
## 18156 https://udn.com/news/story/7331/5401625 導向 1 202
## 18157 https://udn.com/news/story/7331/5401625 導致 1 202
## 18158 https://udn.com/news/story/7331/5401625 戰略目標 1 202
## 18159 https://udn.com/news/story/7331/5401625 澳洲 1 202
## 18160 https://udn.com/news/story/7331/5401625 選擇 1 202
## 18161 https://udn.com/news/story/7331/5401625 遺產 1 202
## 18162 https://udn.com/news/story/7331/5401625 總統 1 202
## 18163 https://udn.com/news/story/7331/5401625 總體而言 1 202
## 18164 https://udn.com/news/story/7331/5401625 聯合聲明 1 202
## 18165 https://udn.com/news/story/7331/5401625 舉行 1 202
## 18166 https://udn.com/news/story/7331/5401625 趨穩 1 202
## 18167 https://udn.com/news/story/7331/5401625 穩定 1 202
## 18168 https://udn.com/news/story/7331/5401625 繼承 1 202
## 18169 https://udn.com/news/story/7331/5401625 變化 1 202
## 18170 https://udn.com/news/story/7331/5401625 觀察 1 202
## 18171 https://udn.com/news/story/7331/5404677 一架 1 102
## 18172 https://udn.com/news/story/7331/5404677 十分 1 102
## 18173 https://udn.com/news/story/7331/5404677 中國 1 102
## 18174 https://udn.com/news/story/7331/5404677 之近 1 102
## 18175 https://udn.com/news/story/7331/5404677 之長 1 102
## 18176 https://udn.com/news/story/7331/5404677 之廣 1 102
## 18177 https://udn.com/news/story/7331/5404677 反潛巡邏機 1 102
## 18178 https://udn.com/news/story/7331/5404677 少有 1 102
## 18179 https://udn.com/news/story/7331/5404677 日至 1 102
## 18180 https://udn.com/news/story/7331/5404677 出動 1 102
## 18181 https://udn.com/news/story/7331/5404677 北京大學 1 102
## 18182 https://udn.com/news/story/7331/5404677 另有 1 102
## 18183 https://udn.com/news/story/7331/5404677 打開 1 102
## 18184 https://udn.com/news/story/7331/5404677 先後 1 102
## 18185 https://udn.com/news/story/7331/5404677 全程 1 102
## 18186 https://udn.com/news/story/7331/5404677 作業 1 102
## 18187 https://udn.com/news/story/7331/5404677 克拉克空軍基地 1 102
## 18188 https://udn.com/news/story/7331/5404677 沖繩 1 102
## 18189 https://udn.com/news/story/7331/5404677 明碼 1 102
## 18190 https://udn.com/news/story/7331/5404677 空軍 1 102
## 18191 https://udn.com/news/story/7331/5404677 表示 1 102
## 18192 https://udn.com/news/story/7331/5404677 近來 1 102
## 18193 https://udn.com/news/story/7331/5404677 近海 1 102
## 18194 https://udn.com/news/story/7331/5404677 近幾個月 1 102
## 18195 https://udn.com/news/story/7331/5404677 近距離 1 102
## 18196 https://udn.com/news/story/7331/5404677 信號 1 102
## 18197 https://udn.com/news/story/7331/5404677 前往 1 102
## 18198 https://udn.com/news/story/7331/5404677 指出 1 102
## 18199 https://udn.com/news/story/7331/5404677 架次 1 102
## 18200 https://udn.com/news/story/7331/5404677 活躍 1 102
## 18201 https://udn.com/news/story/7331/5404677 美軍 1 102
## 18202 https://udn.com/news/story/7331/5404677 美海軍 1 102
## 18203 https://udn.com/news/story/7331/5404677 飛行 1 102
## 18204 https://udn.com/news/story/7331/5404677 飛經 1 102
## 18205 https://udn.com/news/story/7331/5404677 時許 1 102
## 18206 https://udn.com/news/story/7331/5404677 時間 1 102
## 18207 https://udn.com/news/story/7331/5404677 針對 1 102
## 18208 https://udn.com/news/story/7331/5404677 累計 1 102
## 18209 https://udn.com/news/story/7331/5404677 幾乎 1 102
## 18210 https://udn.com/news/story/7331/5404677 智庫 1 102
## 18211 https://udn.com/news/story/7331/5404677 菲律賓 1 102
## 18212 https://udn.com/news/story/7331/5404677 進入 1 102
## 18213 https://udn.com/news/story/7331/5404677 黃岩 1 102
## 18214 https://udn.com/news/story/7331/5404677 微博上 1 102
## 18215 https://udn.com/news/story/7331/5404677 嘉手納 1 102
## 18216 https://udn.com/news/story/7331/5404677 範圍 1 102
## 18217 https://udn.com/news/story/7332/4388480 一次 1 184
## 18218 https://udn.com/news/story/7332/4388480 一起 1 184
## 18219 https://udn.com/news/story/7332/4388480 一輛 1 184
## 18220 https://udn.com/news/story/7332/4388480 七個 1 184
## 18221 https://udn.com/news/story/7332/4388480 上述 1 184
## 18222 https://udn.com/news/story/7332/4388480 下午 1 184
## 18223 https://udn.com/news/story/7332/4388480 大批 1 184
## 18224 https://udn.com/news/story/7332/4388480 大規模 1 184
## 18225 https://udn.com/news/story/7332/4388480 大陸 1 184
## 18226 https://udn.com/news/story/7332/4388480 小孩 1 184
## 18227 https://udn.com/news/story/7332/4388480 今天 1 184
## 18228 https://udn.com/news/story/7332/4388480 內外 1 184
## 18229 https://udn.com/news/story/7332/4388480 天內 1 184
## 18230 https://udn.com/news/story/7332/4388480 方便 1 184
## 18231 https://udn.com/news/story/7332/4388480 以後 1 184
## 18232 https://udn.com/news/story/7332/4388480 外遷 1 184
## 18233 https://udn.com/news/story/7332/4388480 正在 1 184
## 18234 https://udn.com/news/story/7332/4388480 休市 1 184
## 18235 https://udn.com/news/story/7332/4388480 全面 1 184
## 18236 https://udn.com/news/story/7332/4388480 回答 1 184
## 18237 https://udn.com/news/story/7332/4388480 在內 1 184
## 18238 https://udn.com/news/story/7332/4388480 存物 1 184
## 18239 https://udn.com/news/story/7332/4388480 安排 1 184
## 18240 https://udn.com/news/story/7332/4388480 安置工作 1 184
## 18241 https://udn.com/news/story/7332/4388480 年長 1 184
## 18242 https://udn.com/news/story/7332/4388480 有限公司 1 184
## 18243 https://udn.com/news/story/7332/4388480 老人 1 184
## 18244 https://udn.com/news/story/7332/4388480 否認 1 184
## 18245 https://udn.com/news/story/7332/4388480 完成 1 184
## 18246 https://udn.com/news/story/7332/4388480 完畢 1 184
## 18247 https://udn.com/news/story/7332/4388480 技術 1 184
## 18248 https://udn.com/news/story/7332/4388480 更會 1 184
## 18249 https://udn.com/news/story/7332/4388480 男士 1 184
## 18250 https://udn.com/news/story/7332/4388480 男子 1 184
## 18251 https://udn.com/news/story/7332/4388480 男性 1 184
## 18252 https://udn.com/news/story/7332/4388480 到達 1 184
## 18253 https://udn.com/news/story/7332/4388480 所有 1 184
## 18254 https://udn.com/news/story/7332/4388480 拆除 1 184
## 18255 https://udn.com/news/story/7332/4388480 拒絕 1 184
## 18256 https://udn.com/news/story/7332/4388480 招牌 1 184
## 18257 https://udn.com/news/story/7332/4388480 東區 1 184
## 18258 https://udn.com/news/story/7332/4388480 武漢市 1 184
## 18259 https://udn.com/news/story/7332/4388480 物品 1 184
## 18260 https://udn.com/news/story/7332/4388480 建築施工 1 184
## 18261 https://udn.com/news/story/7332/4388480 很多 1 184
## 18262 https://udn.com/news/story/7332/4388480 星島 1 184
## 18263 https://udn.com/news/story/7332/4388480 是否是 1 184
## 18264 https://udn.com/news/story/7332/4388480 要求 1 184
## 18265 https://udn.com/news/story/7332/4388480 負責 1 184
## 18266 https://udn.com/news/story/7332/4388480 原有 1 184
## 18267 https://udn.com/news/story/7332/4388480 氣味 1 184
## 18268 https://udn.com/news/story/7332/4388480 海鮮 1 184
## 18269 https://udn.com/news/story/7332/4388480 疾控 1 184
## 18270 https://udn.com/news/story/7332/4388480 疾控中心 1 184
## 18271 https://udn.com/news/story/7332/4388480 針對 1 184
## 18272 https://udn.com/news/story/7332/4388480 陣陣 1 184
## 18273 https://udn.com/news/story/7332/4388480 參與 1 184
## 18274 https://udn.com/news/story/7332/4388480 商戶 1 184
## 18275 https://udn.com/news/story/7332/4388480 商務車 1 184
## 18276 https://udn.com/news/story/7332/4388480 掛有 1 184
## 18277 https://udn.com/news/story/7332/4388480 清空 1 184
## 18278 https://udn.com/news/story/7332/4388480 現場 1 184
## 18279 https://udn.com/news/story/7332/4388480 竟然 1 184
## 18280 https://udn.com/news/story/7332/4388480 透露 1 184
## 18281 https://udn.com/news/story/7332/4388480 報導 1 184
## 18282 https://udn.com/news/story/7332/4388480 期間 1 184
## 18283 https://udn.com/news/story/7332/4388480 發現 1 184
## 18284 https://udn.com/news/story/7332/4388480 華南 1 184
## 18285 https://udn.com/news/story/7332/4388480 集團 1 184
## 18286 https://udn.com/news/story/7332/4388480 黑色 1 184
## 18287 https://udn.com/news/story/7332/4388480 搬出 1 184
## 18288 https://udn.com/news/story/7332/4388480 新一輪 1 184
## 18289 https://udn.com/news/story/7332/4388480 新冠肺炎 1 184
## 18290 https://udn.com/news/story/7332/4388480 源頭 1 184
## 18291 https://udn.com/news/story/7332/4388480 裏面 1 184
## 18292 https://udn.com/news/story/7332/4388480 裡面 1 184
## 18293 https://udn.com/news/story/7332/4388480 達生 1 184
## 18294 https://udn.com/news/story/7332/4388480 預計 1 184
## 18295 https://udn.com/news/story/7332/4388480 滯留 1 184
## 18296 https://udn.com/news/story/7332/4388480 管理 1 184
## 18297 https://udn.com/news/story/7332/4388480 網傳華 1 184
## 18298 https://udn.com/news/story/7332/4388480 緊急 1 184
## 18299 https://udn.com/news/story/7332/4388480 腐臭 1 184
## 18300 https://udn.com/news/story/7332/4388480 認為 1 184
## 18301 https://udn.com/news/story/7332/4388480 樓下 1 184
## 18302 https://udn.com/news/story/7332/4388480 戴眼鏡 1 184
## 18303 https://udn.com/news/story/7332/4388480 還在 1 184
## 18304 https://udn.com/news/story/7332/4388480 點多 1 184
## 18305 https://udn.com/news/story/7332/4388480 警方 1 184
## 18306 https://udn.com/news/story/7332/4388480 飄出 1 184
## 18307 https://udn.com/news/story/7332/4388480 驚人 1 184
## 18308 https://udn.com/news/story/7332/4591030 一向 1 126
## 18309 https://udn.com/news/story/7332/4591030 一些 1 126
## 18310 https://udn.com/news/story/7332/4591030 工作 1 126
## 18311 https://udn.com/news/story/7332/4591030 中有驗 1 126
## 18312 https://udn.com/news/story/7332/4591030 中國 1 126
## 18313 https://udn.com/news/story/7332/4591030 中國政府 1 126
## 18314 https://udn.com/news/story/7332/4591030 中間 1 126
## 18315 https://udn.com/news/story/7332/4591030 之前 1 126
## 18316 https://udn.com/news/story/7332/4591030 方面 1 126
## 18317 https://udn.com/news/story/7332/4591030 主任 1 126
## 18318 https://udn.com/news/story/7332/4591030 代表 1 126
## 18319 https://udn.com/news/story/7332/4591030 出現 1 126
## 18320 https://udn.com/news/story/7332/4591030 包括 1 126
## 18321 https://udn.com/news/story/7332/4591030 未找到 1 126
## 18322 https://udn.com/news/story/7332/4591030 本身 1 126
## 18323 https://udn.com/news/story/7332/4591030 目前 1 126
## 18324 https://udn.com/news/story/7332/4591030 在內 1 126
## 18325 https://udn.com/news/story/7332/4591030 好多 1 126
## 18326 https://udn.com/news/story/7332/4591030 存在 1 126
## 18327 https://udn.com/news/story/7332/4591030 努力 1 126
## 18328 https://udn.com/news/story/7332/4591030 更早 1 126
## 18329 https://udn.com/news/story/7332/4591030 沒有 1 126
## 18330 https://udn.com/news/story/7332/4591030 走不動 1 126
## 18331 https://udn.com/news/story/7332/4591030 具有 1 126
## 18332 https://udn.com/news/story/7332/4591030 受害 1 126
## 18333 https://udn.com/news/story/7332/4591030 知識 1 126
## 18334 https://udn.com/news/story/7332/4591030 指為 1 126
## 18335 https://udn.com/news/story/7332/4591030 相關 1 126
## 18336 https://udn.com/news/story/7332/4591030 看來 1 126
## 18337 https://udn.com/news/story/7332/4591030 科學家 1 126
## 18338 https://udn.com/news/story/7332/4591030 特徵 1 126
## 18339 https://udn.com/news/story/7332/4591030 疾病 1 126
## 18340 https://udn.com/news/story/7332/4591030 疾控中心 1 126
## 18341 https://udn.com/news/story/7332/4591030 起源地 1 126
## 18342 https://udn.com/news/story/7332/4591030 高福稱 1 126
## 18343 https://udn.com/news/story/7332/4591030 動物 1 126
## 18344 https://udn.com/news/story/7332/4591030 國家 1 126
## 18345 https://udn.com/news/story/7332/4591030 宿主 1 126
## 18346 https://udn.com/news/story/7332/4591030 採訪 1 126
## 18347 https://udn.com/news/story/7332/4591030 採集 1 126
## 18348 https://udn.com/news/story/7332/4591030 接受 1 126
## 18349 https://udn.com/news/story/7332/4591030 推測 1 126
## 18350 https://udn.com/news/story/7332/4591030 推翻 1 126
## 18351 https://udn.com/news/story/7332/4591030 現在 1 126
## 18352 https://udn.com/news/story/7332/4591030 規律 1 126
## 18353 https://udn.com/news/story/7332/4591030 單位 1 126
## 18354 https://udn.com/news/story/7332/4591030 媒體 1 126
## 18355 https://udn.com/news/story/7332/4591030 提取 1 126
## 18356 https://udn.com/news/story/7332/4591030 曾經 1 126
## 18357 https://udn.com/news/story/7332/4591030 最早 1 126
## 18358 https://udn.com/news/story/7332/4591030 進行 1 126
## 18359 https://udn.com/news/story/7332/4591030 傳播 1 126
## 18360 https://udn.com/news/story/7332/4591030 新冠 1 126
## 18361 https://udn.com/news/story/7332/4591030 溯源 1 126
## 18362 https://udn.com/news/story/7332/4591030 跨種 1 126
## 18363 https://udn.com/news/story/7332/4591030 過去 1 126
## 18364 https://udn.com/news/story/7332/4591030 截至 1 126
## 18365 https://udn.com/news/story/7332/4591030 認為 1 126
## 18366 https://udn.com/news/story/7332/4591030 鳳凰衛視 1 126
## 18367 https://udn.com/news/story/7332/4591030 標本 1 126
## 18368 https://udn.com/news/story/7332/4591030 積累 1 126
## 18369 https://udn.com/news/story/7332/4591030 親自 1 126
## 18370 https://udn.com/news/story/7332/4591030 爆發 1 126
## 18371 https://udn.com/news/story/7332/4876640 七年 1 280
## 18372 https://udn.com/news/story/7332/4876640 力度 1 280
## 18373 https://udn.com/news/story/7332/4876640 三座 1 280
## 18374 https://udn.com/news/story/7332/4876640 上半年 1 280
## 18375 https://udn.com/news/story/7332/4876640 千萬 1 280
## 18376 https://udn.com/news/story/7332/4876640 大力 1 280
## 18377 https://udn.com/news/story/7332/4876640 大灣 1 280
## 18378 https://udn.com/news/story/7332/4876640 工作 1 280
## 18379 https://udn.com/news/story/7332/4876640 工程 1 280
## 18380 https://udn.com/news/story/7332/4876640 工廠 1 280
## 18381 https://udn.com/news/story/7332/4876640 井口 1 280
## 18382 https://udn.com/news/story/7332/4876640 今年 1 280
## 18383 https://udn.com/news/story/7332/4876640 公里 1 280
## 18384 https://udn.com/news/story/7332/4876640 天然氣 1 280
## 18385 https://udn.com/news/story/7332/4876640 引述 1 280
## 18386 https://udn.com/news/story/7332/4876640 比計畫 1 280
## 18387 https://udn.com/news/story/7332/4876640 主業 1 280
## 18388 https://udn.com/news/story/7332/4876640 加大 1 280
## 18389 https://udn.com/news/story/7332/4876640 加快 1 280
## 18390 https://udn.com/news/story/7332/4876640 包括 1 280
## 18391 https://udn.com/news/story/7332/4876640 央企 1 280
## 18392 https://udn.com/news/story/7332/4876640 平均 1 280
## 18393 https://udn.com/news/story/7332/4876640 目標 1 280
## 18394 https://udn.com/news/story/7332/4876640 先後 1 280
## 18395 https://udn.com/news/story/7332/4876640 先進 1 280
## 18396 https://udn.com/news/story/7332/4876640 全國 1 280
## 18397 https://udn.com/news/story/7332/4876640 同比 1 280
## 18398 https://udn.com/news/story/7332/4876640 名副其實 1 280
## 18399 https://udn.com/news/story/7332/4876640 多月 1 280
## 18400 https://udn.com/news/story/7332/4876640 安全 1 280
## 18401 https://udn.com/news/story/7332/4876640 安裝 1 280
## 18402 https://udn.com/news/story/7332/4876640 有限公司 1 280
## 18403 https://udn.com/news/story/7332/4876640 自主 1 280
## 18404 https://udn.com/news/story/7332/4876640 自營 1 280
## 18405 https://udn.com/news/story/7332/4876640 行動 1 280
## 18406 https://udn.com/news/story/7332/4876640 佔地 1 280
## 18407 https://udn.com/news/story/7332/4876640 作業區 1 280
## 18408 https://udn.com/news/story/7332/4876640 助力 1 280
## 18409 https://udn.com/news/story/7332/4876640 完井 1 280
## 18410 https://udn.com/news/story/7332/4876640 完成 1 280
## 18411 https://udn.com/news/story/7332/4876640 技術難題 1 280
## 18412 https://udn.com/news/story/7332/4876640 投入 1 280
## 18413 https://udn.com/news/story/7332/4876640 攻克 1 280
## 18414 https://udn.com/news/story/7332/4876640 每天 1 280
## 18415 https://udn.com/news/story/7332/4876640 汪東進 1 280
## 18416 https://udn.com/news/story/7332/4876640 系統 1 280
## 18417 https://udn.com/news/story/7332/4876640 供電 1 280
## 18418 https://udn.com/news/story/7332/4876640 兩個 1 280
## 18419 https://udn.com/news/story/7332/4876640 具有 1 280
## 18420 https://udn.com/news/story/7332/4876640 具備 1 280
## 18421 https://udn.com/news/story/7332/4876640 所在 1 280
## 18422 https://udn.com/news/story/7332/4876640 東南 1 280
## 18423 https://udn.com/news/story/7332/4876640 注入 1 280
## 18424 https://udn.com/news/story/7332/4876640 表示 1 280
## 18425 https://udn.com/news/story/7332/4876640 宣布 1 280
## 18426 https://udn.com/news/story/7332/4876640 持續 1 280
## 18427 https://udn.com/news/story/7332/4876640 流動 1 280
## 18428 https://udn.com/news/story/7332/4876640 相比 1 280
## 18429 https://udn.com/news/story/7332/4876640 相當於 1 280
## 18430 https://udn.com/news/story/7332/4876640 紀錄 1 280
## 18431 https://udn.com/news/story/7332/4876640 計畫 1 280
## 18432 https://udn.com/news/story/7332/4876640 重點 1 280
## 18433 https://udn.com/news/story/7332/4876640 首次 1 280
## 18434 https://udn.com/news/story/7332/4876640 首座 1 280
## 18435 https://udn.com/news/story/7332/4876640 香港 1 280
## 18436 https://udn.com/news/story/7332/4876640 展現 1 280
## 18437 https://udn.com/news/story/7332/4876640 浮式 1 280
## 18438 https://udn.com/news/story/7332/4876640 海況 1 280
## 18439 https://udn.com/news/story/7332/4876640 珠江口盆地 1 280
## 18440 https://udn.com/news/story/7332/4876640 能源 1 280
## 18441 https://udn.com/news/story/7332/4876640 能源安全 1 280
## 18442 https://udn.com/news/story/7332/4876640 區且 1 280
## 18443 https://udn.com/news/story/7332/4876640 國內 1 280
## 18444 https://udn.com/news/story/7332/4876640 國家 1 280
## 18445 https://udn.com/news/story/7332/4876640 基礎 1 280
## 18446 https://udn.com/news/story/7332/4876640 堅實 1 280
## 18447 https://udn.com/news/story/7332/4876640 常規 1 280
## 18448 https://udn.com/news/story/7332/4876640 採用 1 280
## 18449 https://udn.com/news/story/7332/4876640 推進 1 280
## 18450 https://udn.com/news/story/7332/4876640 產能 1 280
## 18451 https://udn.com/news/story/7332/4876640 第一座 1 280
## 18452 https://udn.com/news/story/7332/4876640 第二 1 280
## 18453 https://udn.com/news/story/7332/4876640 處理 1 280
## 18454 https://udn.com/news/story/7332/4876640 處理廠 1 280
## 18455 https://udn.com/news/story/7332/4876640 責任 1 280
## 18456 https://udn.com/news/story/7332/4876640 陸地 1 280
## 18457 https://udn.com/news/story/7332/4876640 創下 1 280
## 18458 https://udn.com/news/story/7332/4876640 奠定 1 280
## 18459 https://udn.com/news/story/7332/4876640 惡劣 1 280
## 18460 https://udn.com/news/story/7332/4876640 提前 1 280
## 18461 https://udn.com/news/story/7332/4876640 智能 1 280
## 18462 https://udn.com/news/story/7332/4876640 最大 1 280
## 18463 https://udn.com/news/story/7332/4876640 最深 1 280
## 18464 https://udn.com/news/story/7332/4876640 無需 1 280
## 18465 https://udn.com/news/story/7332/4876640 發展 1 280
## 18466 https://udn.com/news/story/7332/4876640 著力 1 280
## 18467 https://udn.com/news/story/7332/4876640 超級 1 280
## 18468 https://udn.com/news/story/7332/4876640 集團 1 280
## 18469 https://udn.com/news/story/7332/4876640 順利 1 280
## 18470 https://udn.com/news/story/7332/4876640 新動力 1 280
## 18471 https://udn.com/news/story/7332/4876640 極大 1 280
## 18472 https://udn.com/news/story/7332/4876640 粵港澳 1 280
## 18473 https://udn.com/news/story/7332/4876640 經濟 1 280
## 18474 https://udn.com/news/story/7332/4876640 群因 1 280
## 18475 https://udn.com/news/story/7332/4876640 群在 1 280
## 18476 https://udn.com/news/story/7332/4876640 群是 1 280
## 18477 https://udn.com/news/story/7332/4876640 群還 1 280
## 18478 https://udn.com/news/story/7332/4876640 義勇 1 280
## 18479 https://udn.com/news/story/7332/4876640 萬平方米 1 280
## 18480 https://udn.com/news/story/7332/4876640 董事長 1 280
## 18481 https://udn.com/news/story/7332/4876640 裝置 1 280
## 18482 https://udn.com/news/story/7332/4876640 過程 1 280
## 18483 https://udn.com/news/story/7332/4876640 電潛泵 1 280
## 18484 https://udn.com/news/story/7332/4876640 實施 1 280
## 18485 https://udn.com/news/story/7332/4876640 實現 1 280
## 18486 https://udn.com/news/story/7332/4876640 綜合 1 280
## 18487 https://udn.com/news/story/7332/4876640 遙遠 1 280
## 18488 https://udn.com/news/story/7332/4876640 遠距離 1 280
## 18489 https://udn.com/news/story/7332/4876640 劉華祥 1 280
## 18490 https://udn.com/news/story/7332/4876640 增產量 1 280
## 18491 https://udn.com/news/story/7332/4876640 增量 1 280
## 18492 https://udn.com/news/story/7332/4876640 增儲 1 280
## 18493 https://udn.com/news/story/7332/4876640 數最多 1 280
## 18494 https://udn.com/news/story/7332/4876640 諸多 1 280
## 18495 https://udn.com/news/story/7332/4876640 擔當 1 280
## 18496 https://udn.com/news/story/7332/4876640 興建 1 280
## 18497 https://udn.com/news/story/7332/4876640 優勢 1 280
## 18498 https://udn.com/news/story/7332/4876640 儲油 1 280
## 18499 https://udn.com/news/story/7332/4876640 總體設計 1 280
## 18500 https://udn.com/news/story/7332/4876640 離岸 1 280
## 18501 https://udn.com/news/story/7332/4876640 觀察者 1 280
## 18502 https://udn.com/news/story/7332/4876640 鑽井 1 280
## 18503 https://udn.com/news/story/7333/4665178 人民日報 1 77
## 18504 https://udn.com/news/story/7333/4665178 人民解放軍 1 77
## 18505 https://udn.com/news/story/7333/4665178 八月 1 77
## 18506 https://udn.com/news/story/7333/4665178 大規模 1 77
## 18507 https://udn.com/news/story/7333/4665178 大陸 1 77
## 18508 https://udn.com/news/story/7333/4665178 公文 1 77
## 18509 https://udn.com/news/story/7333/4665178 引述 1 77
## 18510 https://udn.com/news/story/7333/4665178 日至 1 77
## 18511 https://udn.com/news/story/7333/4665178 以下 1 77
## 18512 https://udn.com/news/story/7333/4665178 台灣 1 77
## 18513 https://udn.com/news/story/7333/4665178 正在 1 77
## 18514 https://udn.com/news/story/7333/4665178 官網 1 77
## 18515 https://udn.com/news/story/7333/4665178 東沙 1 77
## 18516 https://udn.com/news/story/7333/4665178 東沙島 1 77
## 18517 https://udn.com/news/story/7333/4665178 南海 1 77
## 18518 https://udn.com/news/story/7333/4665178 威力 1 77
## 18519 https://udn.com/news/story/7333/4665178 是號 1 77
## 18520 https://udn.com/news/story/7333/4665178 計畫 1 77
## 18521 https://udn.com/news/story/7333/4665178 軍演 1 77
## 18522 https://udn.com/news/story/7333/4665178 海事局 1 77
## 18523 https://udn.com/news/story/7333/4665178 海南 1 77
## 18524 https://udn.com/news/story/7333/4665178 消息 1 77
## 18525 https://udn.com/news/story/7333/4665178 留言 1 77
## 18526 https://udn.com/news/story/7333/4665178 紛紛 1 77
## 18527 https://udn.com/news/story/7333/4665178 航警 1 77
## 18528 https://udn.com/news/story/7333/4665178 動手 1 77
## 18529 https://udn.com/news/story/7333/4665178 控制 1 77
## 18530 https://udn.com/news/story/7333/4665178 統治 1 77
## 18531 https://udn.com/news/story/7333/4665178 船舶 1 77
## 18532 https://udn.com/news/story/7333/4665178 設定 1 77
## 18533 https://udn.com/news/story/7333/4665178 這份 1 77
## 18534 https://udn.com/news/story/7333/4665178 連線 1 77
## 18535 https://udn.com/news/story/7333/4665178 報導 1 77
## 18536 https://udn.com/news/story/7333/4665178 進入 1 77
## 18537 https://udn.com/news/story/7333/4665178 新聞 1 77
## 18538 https://udn.com/news/story/7333/4665178 禁止 1 77
## 18539 https://udn.com/news/story/7333/4665178 演習 1 77
## 18540 https://udn.com/news/story/7333/4665178 網友 1 77
## 18541 https://udn.com/news/story/7333/4665178 厲兵秣馬 1 77
## 18542 https://udn.com/news/story/7333/4665178 諸點 1 77
## 18543 https://udn.com/news/story/7333/4665178 震懾 1 77
## 18544 https://udn.com/news/story/7333/4665178 戰而練 1 77
## 18545 https://udn.com/news/story/7333/4704558 上不持 1 145
## 18546 https://udn.com/news/story/7333/4704558 上述 1 145
## 18547 https://udn.com/news/story/7333/4704558 大家 1 145
## 18548 https://udn.com/news/story/7333/4704558 大量 1 145
## 18549 https://udn.com/news/story/7333/4704558 干擾 1 145
## 18550 https://udn.com/news/story/7333/4704558 不合 1 145
## 18551 https://udn.com/news/story/7333/4704558 不免 1 145
## 18552 https://udn.com/news/story/7333/4704558 不是 1 145
## 18553 https://udn.com/news/story/7333/4704558 不亂 1 145
## 18554 https://udn.com/news/story/7333/4704558 不斷 1 145
## 18555 https://udn.com/news/story/7333/4704558 之源 1 145
## 18556 https://udn.com/news/story/7333/4704558 之錨 1 145
## 18557 https://udn.com/news/story/7333/4704558 今日 1 145
## 18558 https://udn.com/news/story/7333/4704558 公約 1 145
## 18559 https://udn.com/news/story/7333/4704558 公然 1 145
## 18560 https://udn.com/news/story/7333/4704558 世人 1 145
## 18561 https://udn.com/news/story/7333/4704558 主管 1 145
## 18562 https://udn.com/news/story/7333/4704558 主權 1 145
## 18563 https://udn.com/news/story/7333/4704558 加入 1 145
## 18564 https://udn.com/news/story/7333/4704558 只會 1 145
## 18565 https://udn.com/news/story/7333/4704558 可悲 1 145
## 18566 https://udn.com/news/story/7333/4704558 史達偉 1 145
## 18567 https://udn.com/news/story/7333/4704558 立場 1 145
## 18568 https://udn.com/news/story/7333/4704558 先進 1 145
## 18569 https://udn.com/news/story/7333/4704558 共同 1 145
## 18570 https://udn.com/news/story/7333/4704558 再次 1 145
## 18571 https://udn.com/news/story/7333/4704558 合則 1 145
## 18572 https://udn.com/news/story/7333/4704558 至今 1 145
## 18573 https://udn.com/news/story/7333/4704558 行為 1 145
## 18574 https://udn.com/news/story/7333/4704558 助理 1 145
## 18575 https://udn.com/news/story/7333/4704558 努力 1 145
## 18576 https://udn.com/news/story/7333/4704558 希望 1 145
## 18577 https://udn.com/news/story/7333/4704558 批評 1 145
## 18578 https://udn.com/news/story/7333/4704558 更加 1 145
## 18579 https://udn.com/news/story/7333/4704558 沒有 1 145
## 18580 https://udn.com/news/story/7333/4704558 言論 1 145
## 18581 https://udn.com/news/story/7333/4704558 事務 1 145
## 18582 https://udn.com/news/story/7333/4704558 亞太 1 145
## 18583 https://udn.com/news/story/7333/4704558 例行 1 145
## 18584 https://udn.com/news/story/7333/4704558 所謂 1 145
## 18585 https://udn.com/news/story/7333/4704558 承諾 1 145
## 18586 https://udn.com/news/story/7333/4704558 東協 1 145
## 18587 https://udn.com/news/story/7333/4704558 武力 1 145
## 18588 https://udn.com/news/story/7333/4704558 爭議地區 1 145
## 18589 https://udn.com/news/story/7333/4704558 則棄 1 145
## 18590 https://udn.com/news/story/7333/4704558 威脅 1 145
## 18591 https://udn.com/news/story/7333/4704558 指責 1 145
## 18592 https://udn.com/news/story/7333/4704558 挑撥離間 1 145
## 18593 https://udn.com/news/story/7333/4704558 挑釁 1 145
## 18594 https://udn.com/news/story/7333/4704558 炫耀 1 145
## 18595 https://udn.com/news/story/7333/4704558 看到 1 145
## 18596 https://udn.com/news/story/7333/4704558 美國國務院 1 145
## 18597 https://udn.com/news/story/7333/4704558 軍機 1 145
## 18598 https://udn.com/news/story/7333/4704558 軍艦 1 145
## 18599 https://udn.com/news/story/7333/4704558 海洋法 1 145
## 18600 https://udn.com/news/story/7333/4704558 留給 1 145
## 18601 https://udn.com/news/story/7333/4704558 記者會 1 145
## 18602 https://udn.com/news/story/7333/4704558 退群 1 145
## 18603 https://udn.com/news/story/7333/4704558 針對 1 145
## 18604 https://udn.com/news/story/7333/4704558 動輒 1 145
## 18605 https://udn.com/news/story/7333/4704558 動盪 1 145
## 18606 https://udn.com/news/story/7333/4704558 唯恐 1 145
## 18607 https://udn.com/news/story/7333/4704558 問題 1 145
## 18608 https://udn.com/news/story/7333/4704558 國務卿 1 145
## 18609 https://udn.com/news/story/7333/4704558 國際 1 145
## 18610 https://udn.com/news/story/7333/4704558 國際法 1 145
## 18611 https://udn.com/news/story/7333/4704558 強權 1 145
## 18612 https://udn.com/news/story/7333/4704558 排除 1 145
## 18613 https://udn.com/news/story/7333/4704558 推行 1 145
## 18614 https://udn.com/news/story/7333/4704558 清楚 1 145
## 18615 https://udn.com/news/story/7333/4704558 麻煩 1 145
## 18616 https://udn.com/news/story/7333/4704558 發言人 1 145
## 18617 https://udn.com/news/story/7333/4704558 發表 1 145
## 18618 https://udn.com/news/story/7333/4704558 虛偽 1 145
## 18619 https://udn.com/news/story/7333/4704558 超級大國 1 145
## 18620 https://udn.com/news/story/7333/4704558 新一輪 1 145
## 18621 https://udn.com/news/story/7333/4704558 極力 1 145
## 18622 https://udn.com/news/story/7333/4704558 毀約 1 145
## 18623 https://udn.com/news/story/7333/4704558 違背 1 145
## 18624 https://udn.com/news/story/7333/4704558 圖謀 1 145
## 18625 https://udn.com/news/story/7333/4704558 實施 1 145
## 18626 https://udn.com/news/story/7333/4704558 對此 1 145
## 18627 https://udn.com/news/story/7333/4704558 製造者 1 145
## 18628 https://udn.com/news/story/7333/4704558 暴露 1 145
## 18629 https://udn.com/news/story/7333/4704558 標籤 1 145
## 18630 https://udn.com/news/story/7333/4704558 頻頻 1 145
## 18631 https://udn.com/news/story/7333/4704558 聯合國 1 145
## 18632 https://udn.com/news/story/7333/4704558 聲明 1 145
## 18633 https://udn.com/news/story/7333/4704558 關係 1 145
## 18634 https://udn.com/news/story/7333/4704558 耀眼 1 145
## 18635 https://udn.com/news/story/7333/4704558 覺得 1 145
## 18636 https://udn.com/news/story/7333/4704558 邏輯 1 145
## 18637 https://udn.com/news/story/7333/4813542 大陸 1 97
## 18638 https://udn.com/news/story/7333/4813542 中方 1 97
## 18639 https://udn.com/news/story/7333/4813542 中企 1 97
## 18640 https://udn.com/news/story/7333/4813542 公民 1 97
## 18641 https://udn.com/news/story/7333/4813542 方向 1 97
## 18642 https://udn.com/news/story/7333/4813542 主權國家 1 97
## 18643 https://udn.com/news/story/7333/4813542 外交部 1 97
## 18644 https://udn.com/news/story/7333/4813542 必要 1 97
## 18645 https://udn.com/news/story/7333/4813542 正在 1 97
## 18646 https://udn.com/news/story/7333/4813542 共同 1 97
## 18647 https://udn.com/news/story/7333/4813542 列入 1 97
## 18648 https://udn.com/news/story/7333/4813542 各國 1 97
## 18649 https://udn.com/news/story/7333/4813542 名單 1 97
## 18650 https://udn.com/news/story/7333/4813542 向<U+7740> 1 97
## 18651 https://udn.com/news/story/7333/4813542 早些時候 1 97
## 18652 https://udn.com/news/story/7333/4813542 有助於 1 97
## 18653 https://udn.com/news/story/7333/4813542 努力 1 97
## 18654 https://udn.com/news/story/7333/4813542 完全 1 97
## 18655 https://udn.com/news/story/7333/4813542 局勢 1 97
## 18656 https://udn.com/news/story/7333/4813542 希望 1 97
## 18657 https://udn.com/news/story/7333/4813542 防禦 1 97
## 18658 https://udn.com/news/story/7333/4813542 事情 1 97
## 18659 https://udn.com/news/story/7333/4813542 制裁 1 97
## 18660 https://udn.com/news/story/7333/4813542 固有 1 97
## 18661 https://udn.com/news/story/7333/4813542 承認 1 97
## 18662 https://udn.com/news/story/7333/4813542 東盟 1 97
## 18663 https://udn.com/news/story/7333/4813542 表示 1 97
## 18664 https://udn.com/news/story/7333/4813542 近來 1 97
## 18665 https://udn.com/news/story/7333/4813542 促進 1 97
## 18666 https://udn.com/news/story/7333/4813542 俄羅斯 1 97
## 18667 https://udn.com/news/story/7333/4813542 南海諸島 1 97
## 18668 https://udn.com/news/story/7333/4813542 活動 1 97
## 18669 https://udn.com/news/story/7333/4813542 美國 1 97
## 18670 https://udn.com/news/story/7333/4813542 美國務院 1 97
## 18671 https://udn.com/news/story/7333/4813542 致力於 1 97
## 18672 https://udn.com/news/story/7333/4813542 限制 1 97
## 18673 https://udn.com/news/story/7333/4813542 修建 1 97
## 18674 https://udn.com/news/story/7333/4813542 時間 1 97
## 18675 https://udn.com/news/story/7333/4813542 消息 1 97
## 18676 https://udn.com/news/story/7333/4813542 涉及 1 97
## 18677 https://udn.com/news/story/7333/4813542 能夠 1 97
## 18678 https://udn.com/news/story/7333/4813542 參與 1 97
## 18679 https://udn.com/news/story/7333/4813542 問題 1 97
## 18680 https://udn.com/news/story/7333/4813542 國際法 1 97
## 18681 https://udn.com/news/story/7333/4813542 這是 1 97
## 18682 https://udn.com/news/story/7333/4813542 部署 1 97
## 18683 https://udn.com/news/story/7333/4813542 報導 1 97
## 18684 https://udn.com/news/story/7333/4813542 尊重 1 97
## 18685 https://udn.com/news/story/7333/4813542 曾多次 1 97
## 18686 https://udn.com/news/story/7333/4813542 發言人 1 97
## 18687 https://udn.com/news/story/7333/4813542 發展 1 97
## 18688 https://udn.com/news/story/7333/4813542 開展 1 97
## 18689 https://udn.com/news/story/7333/4813542 當地 1 97
## 18690 https://udn.com/news/story/7333/4813542 實施 1 97
## 18691 https://udn.com/news/story/7333/4813542 領土 1 97
## 18692 https://udn.com/news/story/7333/4813542 衛星 1 97
## 18693 https://udn.com/news/story/7333/4813542 積極 1 97
## 18694 https://udn.com/news/story/7333/4813542 環球網 1 97
## 18695 https://udn.com/news/story/7333/4813542 趨於平穩 1 97
## 18696 https://udn.com/news/story/7333/4813542 簽證 1 97
## 18697 https://udn.com/news/story/7333/4813542 權利 1 97
## 18698 https://udn.com/news/story/7333/5401465 一些 1 154
## 18699 https://udn.com/news/story/7333/5401465 不利 1 154
## 18700 https://udn.com/news/story/7333/5401465 不足 1 154
## 18701 https://udn.com/news/story/7333/5401465 互信 1 154
## 18702 https://udn.com/news/story/7333/5401465 內容 1 154
## 18703 https://udn.com/news/story/7333/5401465 分歧 1 154
## 18704 https://udn.com/news/story/7333/5401465 主持 1 154
## 18705 https://udn.com/news/story/7333/5401465 主導 1 154
## 18706 https://udn.com/news/story/7333/5401465 代表 1 154
## 18707 https://udn.com/news/story/7333/5401465 加快 1 154
## 18708 https://udn.com/news/story/7333/5401465 外部 1 154
## 18709 https://udn.com/news/story/7333/5401465 未來 1 154
## 18710 https://udn.com/news/story/7333/5401465 矛盾 1 154
## 18711 https://udn.com/news/story/7333/5401465 存在 1 154
## 18712 https://udn.com/news/story/7333/5401465 成為 1 154
## 18713 https://udn.com/news/story/7333/5401465 自我實現 1 154
## 18714 https://udn.com/news/story/7333/5401465 行動 1 154
## 18715 https://udn.com/news/story/7333/5401465 助理 1 154
## 18716 https://udn.com/news/story/7333/5401465 呂佳蓉 1 154
## 18717 https://udn.com/news/story/7333/5401465 事物 1 154
## 18718 https://udn.com/news/story/7333/5401465 依然 1 154
## 18719 https://udn.com/news/story/7333/5401465 刻意 1 154
## 18720 https://udn.com/news/story/7333/5401465 周邊國家 1 154
## 18721 https://udn.com/news/story/7333/5401465 氛圍 1 154
## 18722 https://udn.com/news/story/7333/5401465 爭議 1 154
## 18723 https://udn.com/news/story/7333/5401465 表示 1 154
## 18724 https://udn.com/news/story/7333/5401465 保持警惕 1 154
## 18725 https://udn.com/news/story/7333/5401465 突出 1 154
## 18726 https://udn.com/news/story/7333/5401465 美方 1 154
## 18727 https://udn.com/news/story/7333/5401465 時刻 1 154
## 18728 https://udn.com/news/story/7333/5401465 浩今 1 154
## 18729 https://udn.com/news/story/7333/5401465 浩說 1 154
## 18730 https://udn.com/news/story/7333/5401465 海上 1 154
## 18731 https://udn.com/news/story/7333/5401465 海洋 1 154
## 18732 https://udn.com/news/story/7333/5401465 記者 1 154
## 18733 https://udn.com/news/story/7333/5401465 副部長 1 154
## 18734 https://udn.com/news/story/7333/5401465 得逞 1 154
## 18735 https://udn.com/news/story/7333/5401465 敏感 1 154
## 18736 https://udn.com/news/story/7333/5401465 猜忌 1 154
## 18737 https://udn.com/news/story/7333/5401465 部長 1 154
## 18738 https://udn.com/news/story/7333/5401465 傅瑩 1 154
## 18739 https://udn.com/news/story/7333/5401465 掣肘 1 154
## 18740 https://udn.com/news/story/7333/5401465 無法 1 154
## 18741 https://udn.com/news/story/7333/5401465 發表 1 154
## 18742 https://udn.com/news/story/7333/5401465 進程 1 154
## 18743 https://udn.com/news/story/7333/5401465 暗批 1 154
## 18744 https://udn.com/news/story/7333/5401465 準則 1 154
## 18745 https://udn.com/news/story/7333/5401465 對抗 1 154
## 18746 https://udn.com/news/story/7333/5401465 語言 1 154
## 18747 https://udn.com/news/story/7333/5401465 層面 1 154
## 18748 https://udn.com/news/story/7333/5401465 磋商 1 154
## 18749 https://udn.com/news/story/7333/5401465 衝突 1 154
## 18750 https://udn.com/news/story/7333/5401465 複雜 1 154
## 18751 https://udn.com/news/story/7333/5401465 積極 1 154
## 18752 https://udn.com/news/story/7333/5401465 營造 1 154
## 18753 https://udn.com/news/story/7333/5401465 環境 1 154
## 18754 https://udn.com/news/story/7333/5401465 輿論 1 154
## 18755 https://udn.com/news/story/7333/5401465 邊界 1 154
## 18756 https://udn.com/news/story/7333/5401465 議程 1 154
## 18757 https://udn.com/news/story/7333/5401465 攝影 1 154
## 18758 https://udn.com/news/story/7333/5401465 邏輯 1 154
mask_words_tf_idf <- mask_words_artUrl %>%
bind_tf_idf(word, artUrl, n)mask_words_tf_idf %>%
group_by(artUrl) %>%
top_n(10) %>%
arrange(desc(n)) %>%
ungroup()## Selecting by tf_idf
## # A tibble: 1,660 x 6
## artUrl word n tf idf tf_idf
## <chr> <chr> <int> <dbl> <dbl> <dbl>
## 1 https://udn.com/news/story/6809/5123283 飛彈 19 0.0596 2.44 0.145
## 2 https://udn.com/news/story/7332/4388480 市場 16 0.0870 2.97 0.259
## 3 https://udn.com/news/story/7332/4876640 油田 16 0.0571 4.23 0.242
## 4 https://udn.com/news/story/6809/5063760 雙方 15 0.0333 2.15 0.0716
## 5 https://udn.com/news/story/6809/5123283 拉莫斯 15 0.0470 4.92 0.231
## 6 https://udn.com/news/story/7331/5287493 問題 14 0.0327 1.28 0.0419
## 7 https://udn.com/news/story/121687/5212213 林肯 13 0.0441 3.53 0.156
## 8 https://udn.com/news/story/6809/5123283 印度 13 0.0408 2.44 0.0992
## 9 https://udn.com/news/story/7331/4605008 防空 13 0.0485 2.52 0.122
## 10 https://udn.com/news/story/7331/4605008 識別區 13 0.0485 3.53 0.171
## # ... with 1,650 more rows
並查看每個詞被選中的次數
mask_words_tf_idf %>%
group_by(artUrl) %>%
top_n(10) %>%
arrange(desc(n)) %>%
ungroup() %>%
count(word, sort=TRUE)## Selecting by tf_idf
## # A tibble: 1,371 x 2
## word n
## <chr> <int>
## 1 航母 8
## 2 偵察機 7
## 3 打擊 6
## 4 偵察 6
## 5 菲律賓 6
## 6 主張 5
## 7 自由 5
## 8 杜特蒂 5
## 9 制裁 5
## 10 船隻 5
## # ... with 1,361 more rows
在情緒分析上發現,雖然普遍負面情緒大於正面情緒,但在疫情嚴峻初期甚至美國第一波疫情爆發的時候(7、8月)且未平息之際,負面情緒的分數較疫情獲得控制時的分數來得高。顯示雖然疫情與南海議題為兩個獨立事件,但媒體的敘述字眼會依據疫情是否獲得控制而有不同的描述字眼。南海議題通常圍繞在中、美兩國的政經角力,除了主權的捍衛,亦伴隨了軍事活動的展示。從最常出現的字中,台灣、菲律賓、越南亦是和此議題最常被提及的國家。除了美國,中台菲越均為南海周邊國家,美國如此積極介入,除了南海所蘊含自然資源的爭奪,亦是兩大強權競爭角力的體現。