結果

問題 No.408 五輪ピック
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-29 09:44:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-10-09 02:42:38
合計ジャッジ時間 7,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,032 KB
testcase_01 AC 92 ms
11,904 KB
testcase_02 AC 97 ms
12,032 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 208 ms
16,768 KB
testcase_06 AC 164 ms
15,360 KB
testcase_07 AC 200 ms
17,024 KB
testcase_08 AC 178 ms
15,872 KB
testcase_09 AC 176 ms
15,744 KB
testcase_10 AC 161 ms
15,488 KB
testcase_11 AC 157 ms
15,360 KB
testcase_12 AC 218 ms
17,536 KB
testcase_13 AC 218 ms
17,280 KB
testcase_14 AC 126 ms
12,928 KB
testcase_15 AC 208 ms
16,896 KB
testcase_16 AC 212 ms
17,792 KB
testcase_17 AC 217 ms
17,664 KB
testcase_18 AC 218 ms
18,304 KB
testcase_19 AC 234 ms
19,328 KB
testcase_20 AC 131 ms
13,824 KB
testcase_21 AC 113 ms
12,928 KB
testcase_22 AC 154 ms
14,848 KB
testcase_23 AC 238 ms
19,712 KB
testcase_24 AC 261 ms
17,920 KB
testcase_25 AC 210 ms
16,768 KB
testcase_26 AC 240 ms
19,072 KB
testcase_27 AC 222 ms
16,768 KB
testcase_28 AC 166 ms
15,616 KB
testcase_29 AC 169 ms
15,744 KB
testcase_30 AC 87 ms
11,904 KB
testcase_31 AC 90 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
g=(0..n).map{[]}
e=(1..m).map{u,v=gets.split.map &:to_i;g[u]<<v;g[v]<<u;[u,v]}
z={}
g[1].map{|v|z[v]=1}
l=g.map{|h|h.select{|v|z[v]}.take(3)}
puts e.any?{|u,v|l[u].any?{|w|l[v].any?{|x|[1,u,v,w,x].uniq.size>4}}}?:YES: :NO
0