-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunning Man 2014.html
More file actions
2994 lines (2994 loc) · 257 KB
/
Running Man 2014.html
File metadata and controls
2994 lines (2994 loc) · 257 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="client-nojs vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available" lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>List of Running Man episodes (2014) - Wikipedia</title>
<script>(function(){var className="client-js vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-feature-night-mode-enabled skin-theme-clientpref-day vector-sticky-header-enabled vector-toc-available";var cookie=document.cookie.match(/(?:^|; )enwikimwclientpreferences=([^;]+)/);if(cookie){cookie[1].split('%2C').forEach(function(pref){className=className.replace(new RegExp('(^| )'+pref.replace(/-clientpref-\w+$|[^\w-]+/g,'')+'-clientpref-\\w+( |$)'),'$1'+pref+'$2');});}document.documentElement.className=className;}());RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgRequestId":"85cb9930-6948-4cc7-8abf-f2b24946c68f","wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"List_of_Running_Man_episodes_(2014)","wgTitle":"List of Running Man episodes (2014)","wgCurRevisionId":1323251157,"wgRevisionId":1323251157,"wgArticleId":49456954,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Interlanguage link template existing link","CS1 uses Korean-language script (ko)","CS1 Korean-language sources (ko)","Articles with short description","Short description is different from Wikidata","Use mdy dates from February 2016","Articles lacking reliable references from April 2020","All articles lacking reliable references","Television articles with incorrect naming style","Articles lacking reliable references from July 2025","Articles with Korean-language sources (ko)","Lists of Running Man (TV series) episodes","2014 in South Korean television","2014-related lists"],"wgPageViewLanguage":"en","wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgRelevantPageName":"List_of_Running_Man_episodes_(2014)","wgRelevantArticleId":49456954,"wgTempUserName":null,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgNoticeProject":"wikipedia","wgFlaggedRevsParams":{"tags":{"status":{"levels":1}}},"wgConfirmEditCaptchaNeededForGenericEdit":false,"wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":0,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":true,"watchlist":true,"tagline":false,"nearby":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":50000,"wgMetricsPlatformUserExperiments":{"active_experiments":[],"overrides":[],"enrolled":[],"assigned":[],"subject_ids":[],"sampling_units":[],"coordinator":[]},"wgEditSubmitButtonLabelPublish":true,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":false,"wgVector2022LanguageInHeader":true,"wgULSisLanguageSelectorEmpty":false,"wgWikibaseItemId":"Q23023490","wgCheckUserClientHintsHeadersJsApi":["brands","architecture","bitness","fullVersionList","mobile","model","platform","platformVersion"],"GEHomepageSuggestedEditsEnableTopics":true,"wgGESuggestedEditsTaskTypes":{"taskTypes":["copyedit","link-recommendation"],"unavailableTaskTypes":[]},"wgGETopicsMatchModeEnabled":false,"wgGELevelingUpEnabledForUser":false,"wgGEUseMetricsPlatformExtension":true};
RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.cite.styles":"ready","ext.wikimediamessages.styles":"ready","skins.vector.search.codex.styles":"ready","skins.vector.styles":"ready","skins.vector.icons":"ready","jquery.makeCollapsible.styles":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["ext.xLab","ext.cite.ux-enhancements","site","mediawiki.page.ready","jquery.makeCollapsible","mediawiki.toc","skins.vector.js","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.ReferenceTooltips","ext.gadget.switcher","ext.urlShortener.toolbar","ext.centralauth.centralautologin","mmv.bootstrap","ext.popups","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.echo.centralauth","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.cx.uls.quick.actions","wikibase.client.vector-2022","ext.checkUser.clientHints","ext.growthExperiments.SuggestedEditSession"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.impl(function(){return["user.options@12s5i",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
}];});});</script>
<link rel="stylesheet" href="/w/load.php?lang=en&modules=ext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediamessages.styles%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cskins.vector.search.codex.styles%7Cwikibase.client.init&only=styles&skin=vector-2022">
<script async src="/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022"></script>
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" href="/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022">
<meta name="generator" content="MediaWiki 1.46.0-wmf.3">
<meta name="referrer" content="origin">
<meta name="referrer" content="origin-when-cross-origin">
<meta name="robots" content="max-image-preview:standard">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=1120">
<meta property="og:title" content="List of Running Man episodes (2014) - Wikipedia">
<meta property="og:type" content="website">
<link rel="preconnect" href="//upload.wikimedia.org">
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=edit">
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png">
<link rel="icon" href="/static/favicon/wikipedia.ico">
<link rel="search" type="application/opensearchdescription+xml" href="/w/rest.php/v1/search" title="Wikipedia (en)">
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd">
<link rel="canonical" href="https://en.wikipedia.org/wiki/List_of_Running_Man_episodes_(2014)">
<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom">
<link rel="dns-prefetch" href="//meta.wikimedia.org">
<link rel="dns-prefetch" href="auth.wikimedia.org">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-List_of_Running_Man_episodes_2014 rootpage-List_of_Running_Man_episodes_2014 skin-vector-2022 action-view">
<div id="mw-aria-live-region" class="mw-aria-live-region" aria-live="polite"></div>
<a class="mw-jump-link" href="#bodyContent">Jump to content</a>
<div class="vector-header-container">
<header class="vector-header mw-header no-font-mode-scale">
<div class="vector-header-start">
<nav class="vector-main-menu-landmark" aria-label="Site">
<div id="vector-main-menu-dropdown" class="vector-dropdown vector-main-menu-dropdown vector-button-flush-left vector-button-flush-right" title="Main menu">
<input type="checkbox" id="vector-main-menu-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-main-menu-dropdown" class="vector-dropdown-checkbox " aria-label="Main menu"> <label id="vector-main-menu-dropdown-label" for="vector-main-menu-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-menu mw-ui-icon-wikimedia-menu"></span> <span class="vector-dropdown-label-text">Main menu</span> </label>
<div class="vector-dropdown-content">
<div id="vector-main-menu-unpinned-container" class="vector-unpinned-container">
<div id="vector-main-menu" class="vector-main-menu vector-pinnable-element">
<div class="vector-pinnable-header vector-main-menu-pinnable-header vector-pinnable-header-unpinned" data-feature-name="main-menu-pinned" data-pinnable-element-id="vector-main-menu" data-pinned-container-id="vector-main-menu-pinned-container" data-unpinned-container-id="vector-main-menu-unpinned-container">
<div class="vector-pinnable-header-label">Main menu</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-main-menu.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-main-menu.unpin">hide</button>
</div>
<div id="p-navigation" class="vector-menu mw-portlet mw-portlet-navigation">
<div class="vector-menu-heading">Navigation</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="n-mainpage-description" class="mw-list-item"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z"><span>Main page</span></a></li>
<li id="n-contents" class="mw-list-item"><a href="/wiki/Wikipedia:Contents" title="Guides to browsing Wikipedia"><span>Contents</span></a></li>
<li id="n-currentevents" class="mw-list-item"><a href="/wiki/Portal:Current_events" title="Articles related to current events"><span>Current events</span></a></li>
<li id="n-randompage" class="mw-list-item"><a href="/wiki/Special:Random" title="Visit a randomly selected article [x]" accesskey="x"><span>Random article</span></a></li>
<li id="n-aboutsite" class="mw-list-item"><a href="/wiki/Wikipedia:About" title="Learn about Wikipedia and how it works"><span>About Wikipedia</span></a></li>
<li id="n-contactpage" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia"><span>Contact us</span></a></li>
</ul>
</div>
</div>
<div id="p-interaction" class="vector-menu mw-portlet mw-portlet-interaction">
<div class="vector-menu-heading">Contribute</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="n-help" class="mw-list-item"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia"><span>Help</span></a></li>
<li id="n-introduction" class="mw-list-item"><a href="/wiki/Help:Introduction" title="Learn how to edit Wikipedia"><span>Learn to edit</span></a></li>
<li id="n-portal" class="mw-list-item"><a href="/wiki/Wikipedia:Community_portal" title="The hub for editors"><span>Community portal</span></a></li>
<li id="n-recentchanges" class="mw-list-item"><a href="/wiki/Special:RecentChanges" title="A list of recent changes to Wikipedia [r]" accesskey="r"><span>Recent changes</span></a></li>
<li id="n-upload" class="mw-list-item"><a href="/wiki/Wikipedia:File_upload_wizard" title="Add images or other media for use on Wikipedia"><span>Upload file</span></a></li>
<li id="n-specialpages" class="mw-list-item"><a href="/wiki/Special:SpecialPages"><span>Special pages</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<a href="/wiki/Main_Page" class="mw-logo"> <img class="mw-logo-icon" src="/static/images/icons/wikipedia.png" alt="" aria-hidden="true" height="50" width="50"> <span class="mw-logo-container skin-invert"> <img class="mw-logo-wordmark" alt="Wikipedia" src="/static/images/mobile/copyright/wikipedia-wordmark-en.svg" style="width: 7.5em; height: 1.125em;"> <img class="mw-logo-tagline" alt="The Free Encyclopedia" src="/static/images/mobile/copyright/wikipedia-tagline-en.svg" width="117" height="13" style="width: 7.3125em; height: 0.8125em;"> </span> </a>
</div>
<div class="vector-header-end">
<div id="p-search" role="search" class="vector-search-box-vue vector-search-box-collapses vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">
<a href="/wiki/Special:Search" class="cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only search-toggle" title="Search Wikipedia [f]" accesskey="f"><span class="vector-icon mw-ui-icon-search mw-ui-icon-wikimedia-search"></span> <span>Search</span> </a>
<div class="vector-typeahead-search-container">
<div class="cdx-typeahead-search cdx-typeahead-search--show-thumbnail cdx-typeahead-search--auto-expand-width">
<form action="/w/index.php" id="searchform" class="cdx-search-input cdx-search-input--has-end-button">
<div id="simpleSearch" class="cdx-search-input__input-wrapper" data-search-loc="header-moved">
<div class="cdx-text-input cdx-text-input--has-start-icon">
<input class="cdx-text-input__input mw-searchInput" autocomplete="off" type="search" name="search" placeholder="Search Wikipedia" aria-label="Search Wikipedia" autocapitalize="sentences" spellcheck="false" title="Search Wikipedia [f]" accesskey="f" id="searchInput"> <span class="cdx-text-input__icon cdx-text-input__start-icon"></span>
</div>
<input type="hidden" name="title" value="Special:Search">
</div>
<button class="cdx-button cdx-search-input__end-button">Search</button>
</form>
</div>
</div>
</div>
<nav class="vector-user-links vector-user-links-wide" aria-label="Personal tools">
<div class="vector-user-links-main">
<div id="p-vector-user-menu-preferences" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<div id="p-vector-user-menu-userpage" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<nav class="vector-appearance-landmark" aria-label="Appearance">
<div id="vector-appearance-dropdown" class="vector-dropdown " title="Change the appearance of the page's font size, width, and color">
<input type="checkbox" id="vector-appearance-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-appearance-dropdown" class="vector-dropdown-checkbox " aria-label="Appearance"> <label id="vector-appearance-dropdown-label" for="vector-appearance-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-appearance mw-ui-icon-wikimedia-appearance"></span> <span class="vector-dropdown-label-text">Appearance</span> </label>
<div class="vector-dropdown-content">
<div id="vector-appearance-unpinned-container" class="vector-unpinned-container"></div>
</div>
</div>
</nav>
<div id="p-vector-user-menu-notifications" class="vector-menu mw-portlet emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
<div id="p-vector-user-menu-overflow" class="vector-menu mw-portlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="pt-sitesupport-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en" class=""><span>Donate</span></a></li>
<li id="pt-createaccount-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Special:CreateAccount&returnto=List+of+Running+Man+episodes+%282014%29" title="You are encouraged to create an account and log in; however, it is not mandatory" class=""><span>Create account</span></a></li>
<li id="pt-login-2" class="user-links-collapsible-item mw-list-item user-links-collapsible-item"><a data-mw="interface" href="/w/index.php?title=Special:UserLogin&returnto=List+of+Running+Man+episodes+%282014%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o" class=""><span>Log in</span></a></li>
</ul>
</div>
</div>
</div>
<div id="vector-user-links-dropdown" class="vector-dropdown vector-user-menu vector-button-flush-right vector-user-menu-logged-out user-links-collapsible-item" title="Log in and more options">
<input type="checkbox" id="vector-user-links-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-user-links-dropdown" class="vector-dropdown-checkbox " aria-label="Personal tools"> <label id="vector-user-links-dropdown-label" for="vector-user-links-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-ellipsis mw-ui-icon-wikimedia-ellipsis"></span> <span class="vector-dropdown-label-text">Personal tools</span> </label>
<div class="vector-dropdown-content">
<div id="p-personal" class="vector-menu mw-portlet mw-portlet-personal user-links-collapsible-item" title="User menu">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="pt-sitesupport" class="user-links-collapsible-item mw-list-item"><a href="https://donate.wikimedia.org/?wmf_source=donate&wmf_medium=sidebar&wmf_campaign=en.wikipedia.org&uselang=en"><span>Donate</span></a></li>
<li id="pt-createaccount" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:CreateAccount&returnto=List+of+Running+Man+episodes+%282014%29" title="You are encouraged to create an account and log in; however, it is not mandatory"><span class="vector-icon mw-ui-icon-userAdd mw-ui-icon-wikimedia-userAdd"></span> <span>Create account</span></a></li>
<li id="pt-login" class="user-links-collapsible-item mw-list-item"><a href="/w/index.php?title=Special:UserLogin&returnto=List+of+Running+Man+episodes+%282014%29" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o"><span class="vector-icon mw-ui-icon-logIn mw-ui-icon-wikimedia-logIn"></span> <span>Log in</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
</div>
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="vector-sitenotice-container">
<div id="siteNotice">
<!-- CentralNotice -->
</div>
</div>
<div class="vector-column-start">
<div class="vector-main-menu-container">
<div id="mw-navigation">
<nav id="mw-panel" class="vector-main-menu-landmark" aria-label="Site">
<div id="vector-main-menu-pinned-container" class="vector-pinned-container"></div>
</nav>
</div>
</div>
<div class="vector-sticky-pinned-container">
<nav id="mw-panel-toc" aria-label="Contents" data-event-name="ui.sidebar-toc" class="mw-table-of-contents-container vector-toc-landmark">
<div id="vector-toc-pinned-container" class="vector-pinned-container">
<div id="vector-toc" class="vector-toc vector-pinnable-element">
<div class="vector-pinnable-header vector-toc-pinnable-header vector-pinnable-header-pinned" data-feature-name="toc-pinned" data-pinnable-element-id="vector-toc">
<h2 class="vector-pinnable-header-label">Contents</h2>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-toc.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-toc.unpin">hide</button>
</div>
<ul class="vector-toc-contents" id="mw-panel-toc-list">
<li id="toc-mw-content-text" class="vector-toc-list-item vector-toc-level-1"><a href="#" class="vector-toc-link">
<div class="vector-toc-text">(Top)</div>
</a></li>
<li id="toc-Episodes" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Episodes">
<div class="vector-toc-text">
<span class="vector-toc-numb">1</span> <span>Episodes</span>
</div>
</a>
<ul id="toc-Episodes-sublist" class="vector-toc-list"></ul></li>
<li id="toc-Ratings" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Ratings">
<div class="vector-toc-text">
<span class="vector-toc-numb">2</span> <span>Ratings</span>
</div>
</a>
<ul id="toc-Ratings-sublist" class="vector-toc-list"></ul></li>
<li id="toc-Notes" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#Notes">
<div class="vector-toc-text">
<span class="vector-toc-numb">3</span> <span>Notes</span>
</div>
</a>
<ul id="toc-Notes-sublist" class="vector-toc-list"></ul></li>
<li id="toc-References" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#References">
<div class="vector-toc-text">
<span class="vector-toc-numb">4</span> <span>References</span>
</div>
</a>
<ul id="toc-References-sublist" class="vector-toc-list"></ul></li>
<li id="toc-External_links" class="vector-toc-list-item vector-toc-level-1 vector-toc-list-item-expanded"><a class="vector-toc-link" href="#External_links">
<div class="vector-toc-text">
<span class="vector-toc-numb">5</span> <span>External links</span>
</div>
</a>
<ul id="toc-External_links-sublist" class="vector-toc-list"></ul></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar no-font-mode-scale">
<nav aria-label="Contents" class="vector-toc-landmark">
<div id="vector-page-titlebar-toc" class="vector-dropdown vector-page-titlebar-toc vector-button-flush-left" title="Table of Contents">
<input type="checkbox" id="vector-page-titlebar-toc-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-titlebar-toc" class="vector-dropdown-checkbox " aria-label="Toggle the table of contents"> <label id="vector-page-titlebar-toc-label" for="vector-page-titlebar-toc-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--icon-only " aria-hidden="true"><span class="vector-icon mw-ui-icon-listBullet mw-ui-icon-wikimedia-listBullet"></span> <span class="vector-dropdown-label-text">Toggle the table of contents</span> </label>
<div class="vector-dropdown-content">
<div id="vector-page-titlebar-toc-unpinned-container" class="vector-unpinned-container"></div>
</div>
</div>
</nav>
<h1 id="firstHeading" class="firstHeading mw-first-heading">List of <i>Running Man</i> episodes (2014)</h1>
<div id="p-lang-btn" class="vector-dropdown mw-portlet mw-portlet-lang">
<input type="checkbox" id="p-lang-btn-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-p-lang-btn" class="vector-dropdown-checkbox mw-interlanguage-selector" aria-label="Go to an article in another language. Available in 3 languages"> <label id="p-lang-btn-label" for="p-lang-btn-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet cdx-button--action-progressive mw-portlet-lang-heading-3" aria-hidden="true"><span class="vector-icon mw-ui-icon-language-progressive mw-ui-icon-wikimedia-language-progressive"></span> <span class="vector-dropdown-label-text">3 languages</span> </label>
<div class="vector-dropdown-content">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li class="interlanguage-link interwiki-es mw-list-item"><a href="https://es.wikipedia.org/wiki/Anexo:Episodios_de_Running_Man_(2014)" title="Anexo:Episodios de Running Man (2014) – Spanish" lang="es" hreflang="es" data-title="Anexo:Episodios de Running Man (2014)" data-language-autonym="Español" data-language-local-name="Spanish" class="interlanguage-link-target"><span>Español</span></a></li>
<li class="interlanguage-link interwiki-id mw-list-item"><a href="https://id.wikipedia.org/wiki/Daftar_episode_Running_Man_(2014)" title="Daftar episode Running Man (2014) – Indonesian" lang="id" hreflang="id" data-title="Daftar episode Running Man (2014)" data-language-autonym="Bahasa Indonesia" data-language-local-name="Indonesian" class="interlanguage-link-target"><span>Bahasa Indonesia</span></a></li>
<li class="interlanguage-link interwiki-vi mw-list-item"><a href="https://vi.wikipedia.org/wiki/Danh_s%C3%A1ch_t%E1%BA%ADp_c%E1%BB%A7a_Running_Man_(2014)" title="Danh sách tập của Running Man (2014) – Vietnamese" lang="vi" hreflang="vi" data-title="Danh sách tập của Running Man (2014)" data-language-autonym="Tiếng Việt" data-language-local-name="Vietnamese" class="interlanguage-link-target"><span>Tiếng Việt</span></a></li>
</ul>
<div class="after-portlet after-portlet-lang">
<span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q23023490#sitelinks-wikipedia" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span>
</div>
</div>
</div>
</div>
</header>
<div class="vector-page-toolbar vector-feature-custom-font-size-clientpref--excluded">
<div class="vector-page-toolbar-container">
<div id="left-navigation">
<nav aria-label="Namespaces">
<div id="p-associated-pages" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-associated-pages">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-nstab-main" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2014)" title="View the content page [c]" accesskey="c"><span>Article</span></a></li>
<li id="ca-talk" class="vector-tab-noicon mw-list-item"><a href="/wiki/Talk:List_of_Running_Man_episodes_(2014)" rel="discussion" title="Discuss improvements to the content page [t]" accesskey="t"><span>Talk</span></a></li>
</ul>
</div>
</div>
<div id="vector-variants-dropdown" class="vector-dropdown emptyPortlet">
<input type="checkbox" id="vector-variants-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-variants-dropdown" class="vector-dropdown-checkbox " aria-label="Change language variant"> <label id="vector-variants-dropdown-label" for="vector-variants-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">English</span> </label>
<div class="vector-dropdown-content">
<div id="p-variants" class="vector-menu mw-portlet mw-portlet-variants emptyPortlet">
<div class="vector-menu-content">
<ul class="vector-menu-content-list"></ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div id="right-navigation" class="vector-collapsible">
<nav aria-label="Views">
<div id="p-views" class="vector-menu vector-menu-tabs mw-portlet mw-portlet-views">
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-view" class="selected vector-tab-noicon mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2014)"><span>Read</span></a></li>
<li id="ca-edit" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li>
<li id="ca-history" class="vector-tab-noicon mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=history" title="Past revisions of this page [h]" accesskey="h"><span>View history</span></a></li>
</ul>
</div>
</div>
</nav>
<nav class="vector-page-tools-landmark" aria-label="Page tools">
<div id="vector-page-tools-dropdown" class="vector-dropdown vector-page-tools-dropdown">
<input type="checkbox" id="vector-page-tools-dropdown-checkbox" role="button" aria-haspopup="true" data-event-name="ui.dropdown-vector-page-tools-dropdown" class="vector-dropdown-checkbox " aria-label="Tools"> <label id="vector-page-tools-dropdown-label" for="vector-page-tools-dropdown-checkbox" class="vector-dropdown-label cdx-button cdx-button--fake-button cdx-button--fake-button--enabled cdx-button--weight-quiet" aria-hidden="true"><span class="vector-dropdown-label-text">Tools</span> </label>
<div class="vector-dropdown-content">
<div id="vector-page-tools-unpinned-container" class="vector-unpinned-container">
<div id="vector-page-tools" class="vector-page-tools vector-pinnable-element">
<div class="vector-pinnable-header vector-page-tools-pinnable-header vector-pinnable-header-unpinned" data-feature-name="page-tools-pinned" data-pinnable-element-id="vector-page-tools" data-pinned-container-id="vector-page-tools-pinned-container" data-unpinned-container-id="vector-page-tools-unpinned-container">
<div class="vector-pinnable-header-label">Tools</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-page-tools.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-page-tools.unpin">hide</button>
</div>
<div id="p-cactions" class="vector-menu mw-portlet mw-portlet-cactions emptyPortlet vector-has-collapsible-items" title="More options">
<div class="vector-menu-heading">Actions</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="ca-more-view" class="selected vector-more-collapsible-item mw-list-item"><a href="/wiki/List_of_Running_Man_episodes_(2014)"><span>Read</span></a></li>
<li id="ca-more-edit" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=edit" title="Edit this page [e]" accesskey="e"><span>Edit</span></a></li>
<li id="ca-more-history" class="vector-more-collapsible-item mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=history"><span>View history</span></a></li>
</ul>
</div>
</div>
<div id="p-tb" class="vector-menu mw-portlet mw-portlet-tb">
<div class="vector-menu-heading">General</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="t-whatlinkshere" class="mw-list-item"><a href="/wiki/Special:WhatLinksHere/List_of_Running_Man_episodes_(2014)" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j"><span>What links here</span></a></li>
<li id="t-recentchangeslinked" class="mw-list-item"><a href="/wiki/Special:RecentChangesLinked/List_of_Running_Man_episodes_(2014)" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k"><span>Related changes</span></a></li>
<li id="t-upload" class="mw-list-item"><a href="//en.wikipedia.org/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u"><span>Upload file</span></a></li>
<li id="t-permalink" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&oldid=1323251157" title="Permanent link to this revision of this page"><span>Permanent link</span></a></li>
<li id="t-info" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=info" title="More information about this page"><span>Page information</span></a></li>
<li id="t-cite" class="mw-list-item"><a href="/w/index.php?title=Special:CiteThisPage&page=List_of_Running_Man_episodes_%282014%29&id=1323251157&wpFormIdentifier=titleform" title="Information on how to cite this page"><span>Cite this page</span></a></li>
<li id="t-urlshortener" class="mw-list-item"><a href="/w/index.php?title=Special:UrlShortener&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FList_of_Running_Man_episodes_%282014%29"><span>Get shortened URL</span></a></li>
<li id="t-urlshortener-qrcode" class="mw-list-item"><a href="/w/index.php?title=Special:QrCode&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FList_of_Running_Man_episodes_%282014%29"><span>Download QR code</span></a></li>
</ul>
</div>
</div>
<div id="p-coll-print_export" class="vector-menu mw-portlet mw-portlet-coll-print_export">
<div class="vector-menu-heading">Print/export</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="coll-download-as-rl" class="mw-list-item"><a href="/w/index.php?title=Special:DownloadAsPdf&page=List_of_Running_Man_episodes_%282014%29&action=show-download-screen" title="Download this page as a PDF file"><span>Download as PDF</span></a></li>
<li id="t-print" class="mw-list-item"><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&printable=yes" title="Printable version of this page [p]" accesskey="p"><span>Printable version</span></a></li>
</ul>
</div>
</div>
<div id="p-wikibase-otherprojects" class="vector-menu mw-portlet mw-portlet-wikibase-otherprojects">
<div class="vector-menu-heading">In other projects</div>
<div class="vector-menu-content">
<ul class="vector-menu-content-list">
<li id="t-wikibase" class="wb-otherproject-link wb-otherproject-wikibase-dataitem mw-list-item"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q23023490" title="Structured data on this page hosted by Wikidata [g]" accesskey="g"><span>Wikidata item</span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
</div>
<div class="vector-column-end no-font-mode-scale">
<div class="vector-sticky-pinned-container">
<nav class="vector-page-tools-landmark" aria-label="Page tools">
<div id="vector-page-tools-pinned-container" class="vector-pinned-container"></div>
</nav>
<nav class="vector-appearance-landmark" aria-label="Appearance">
<div id="vector-appearance-pinned-container" class="vector-pinned-container">
<div id="vector-appearance" class="vector-appearance vector-pinnable-element">
<div class="vector-pinnable-header vector-appearance-pinnable-header vector-pinnable-header-pinned" data-feature-name="appearance-pinned" data-pinnable-element-id="vector-appearance" data-pinned-container-id="vector-appearance-pinned-container" data-unpinned-container-id="vector-appearance-unpinned-container">
<div class="vector-pinnable-header-label">Appearance</div>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-pin-button" data-event-name="pinnable-header.vector-appearance.pin">move to sidebar</button>
<button class="vector-pinnable-header-toggle-button vector-pinnable-header-unpin-button" data-event-name="pinnable-header.vector-appearance.unpin">hide</button>
</div>
</div>
</div>
</nav>
</div>
</div>
<div id="bodyContent" class="vector-body" aria-labelledby="firstHeading" data-mw-ve-target-container>
<div class="vector-body-before-content">
<div class="mw-indicators"></div>
<div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
</div>
<div id="contentSub">
<div id="mw-content-subtitle"></div>
</div>
<div id="mw-content-text" class="mw-body-content">
<div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">
<p class="mw-empty-elt"></p>
<p class="mw-empty-elt"></p>
<style data-mw-deduplicate="TemplateStyles:r1305433154">.mw-parser-output .ambox{border:1px solid #a2a9b1;border-left:10px solid #36c;background-color:#fbfbfb;box-sizing:border-box}.mw-parser-output .ambox+link+.ambox,.mw-parser-output .ambox+link+style+.ambox,.mw-parser-output .ambox+link+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+style+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+link+.ambox{margin-top:-1px}html body.mediawiki .mw-parser-output .ambox.mbox-small-left{margin:4px 1em 4px 0;overflow:hidden;width:238px;border-collapse:collapse;font-size:88%;line-height:1.25em}.mw-parser-output .ambox-speedy{border-left:10px solid #b32424;background-color:#fee7e6}.mw-parser-output .ambox-delete{border-left:10px solid #b32424}.mw-parser-output .ambox-content{border-left:10px solid #f28500}.mw-parser-output .ambox-style{border-left:10px solid #fc3}.mw-parser-output .ambox-move{border-left:10px solid #9932cc}.mw-parser-output .ambox-protection{border-left:10px solid #a2a9b1}.mw-parser-output .ambox .mbox-text{border:none;padding:0.25em 0.5em;width:100%}.mw-parser-output .ambox .mbox-image{border:none;padding:2px 0 2px 0.5em;text-align:center}.mw-parser-output .ambox .mbox-imageright{border:none;padding:2px 0.5em 2px 0;text-align:center}.mw-parser-output .ambox .mbox-empty-cell{border:none;padding:0;width:1px}.mw-parser-output .ambox .mbox-image-div{width:52px}@media(min-width:720px){.mw-parser-output .ambox{margin:0 10%}}@media print{body.ns-0 .mw-parser-output .ambox{display:none!important}}</style>
<table class="box-Unreliable_sources plainlinks metadata ambox ambox-content ambox-unreliable_sources" role="presentation">
<tbody>
<tr>
<td class="mbox-image">
<div class="mbox-image-div">
<span typeof="mw:File"><a href="/wiki/File:Text_document_with_red_question_mark.svg" class="mw-file-description"><img src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Text_document_with_red_question_mark.svg/40px-Text_document_with_red_question_mark.svg.png" decoding="async" width="40" height="40" class="mw-file-element" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Text_document_with_red_question_mark.svg/60px-Text_document_with_red_question_mark.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Text_document_with_red_question_mark.svg/80px-Text_document_with_red_question_mark.svg.png 2x" data-file-width="48" data-file-height="48"></a></span>
</div>
</td>
<td class="mbox-text">
<div class="mbox-text-span">
Some of this article's <a href="/wiki/Wikipedia:Citing_sources" title="Wikipedia:Citing sources">listed sources</a> <b>may not be <a href="/wiki/Wikipedia:Reliable_sources" title="Wikipedia:Reliable sources">reliable</a></b>.<span class="hide-when-compact"> Please help improve this article by looking for better, more reliable sources. Unreliable citations may be challenged and removed.</span> <span class="date-container"><i>(<span class="date">April 2020</span>)</i></span><span class="hide-when-compact"><i> (<small><a href="/wiki/Help:Maintenance_template_removal" title="Help:Maintenance template removal">Learn how and when to remove this message</a></small>)</i></span>
</div>
</td>
</tr>
</tbody>
</table>
<p>This is a list of episodes of the South Korean <a href="/wiki/Variety_show" title="Variety show">variety show</a> <i><a href="/wiki/Running_Man_(TV_program)" title="Running Man (TV program)">Running Man</a></i> in 2014. The show airs on <a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS</a> as part of their <i><a href="/wiki/Good_Sunday" title="Good Sunday">Good Sunday</a></i> lineup.</p>
<div class="shortdescription nomobile noexcerpt noprint searchaux" style="display:none">Season of television series</div>
<style data-mw-deduplicate="TemplateStyles:r1316064257">.mw-parser-output .infobox-subbox{padding:0;border:none;margin:-3px;width:auto;min-width:100%;font-size:100%;clear:none;float:none;background-color:transparent;color:inherit}.mw-parser-output .infobox-3cols-child{margin:-3px}.mw-parser-output .infobox .navbar{font-size:100%}@media screen{html.skin-theme-clientpref-night .mw-parser-output .infobox-full-data:not(.notheme)>div:not(.notheme)[style]{background:#1f1f23!important;color:#f8f9fa}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .infobox-full-data:not(.notheme)>div:not(.notheme)[style]{background:#1f1f23!important;color:#f8f9fa}}@media(min-width:640px){body.skin--responsive .mw-parser-output .infobox-table{display:table!important}body.skin--responsive .mw-parser-output .infobox-table>caption{display:table-caption!important}body.skin--responsive .mw-parser-output .infobox-table>tbody{display:table-row-group}body.skin--responsive .mw-parser-output .infobox-table th,body.skin--responsive .mw-parser-output .infobox-table td{padding-left:inherit;padding-right:inherit}}</style>
<table class="infobox vevent">
<tbody>
<tr>
<th colspan="2" class="infobox-above summary" style="background-color: #F2F5A9; color: black; padding: 0.25em 1em; font-size: 125%;"><i>List of Running Man episodes</i></th>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;"><abbr title="Number">No.</abbr> of episodes</th>
<td class="infobox-data">49</td>
</tr>
<tr>
<th colspan="2" class="infobox-header summary" style="background-color: #F2F5A9; color: black; padding: 0.25em 1em; line-height: 1.5em;">Release</th>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;">Original network</th>
<td class="infobox-data"><a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS</a></td>
</tr>
<tr>
<th scope="row" class="infobox-label" style="white-space: nowrap;">Original release</th>
<td class="infobox-data">January 5<span style="display: none;"> (<span class="bday dtstart published updated itvstart">2014-01-05</span>)</span> –
<br>
December 28, 2014<span style="display: none;"> (<span class="dtend itvend">2014-12-28</span>)</span></td>
</tr>
<tr>
<th colspan="2" class="infobox-header summary" style="background-color: #F2F5A9; color: black; padding: 0.25em 1em; line-height: 1.5em;">Season chronology</th>
</tr>
<tr class="noprint">
<td colspan="2" class="infobox-full-data">
<div style="float: left;">
← <b>Previous</b>
<br>
<a href="/wiki/List_of_Running_Man_episodes_(2013)" title="List of Running Man episodes (2013)">2013</a>
</div>
<div style="float: right;">
<b>Next</b> →
<br>
<a href="/wiki/List_of_Running_Man_episodes_(2015)" title="List of Running Man episodes (2015)">2015</a>
</div>
</td>
</tr>
<tr>
<td colspan="2" class="infobox-below noprint"><a href="/wiki/List_of_Running_Man_episodes" class="mw-redirect" title="List of Running Man episodes">List of episodes</a></td>
</tr>
</tbody>
</table>
<meta property="mw:PageProp/toc">
<div class="mw-heading mw-heading2">
<h2 id="Episodes">Episodes</h2>
<span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_Running_Man_episodes_(2014)&action=edit&section=1" title="Edit section: Episodes"><span>edit</span></a><span class="mw-editsection-bracket">]</span></span>
</div>
<div style="clear:both;" class=""></div>
<table class="wikitable" style="text-align:center">
<caption>List of episodes (episode 179–227)</caption>
<tbody>
<tr>
<th style="background:#F2F5A9"><abbr title="Episode">Ep.</abbr></th>
<th style="background:#F2F5A9">Broadcast Date
<br>
<span style="font-size: 85%;">(Filming Date)</span></th>
<th style="background:#F2F5A9; width:130px">Guest(s)</th>
<th style="background:#F2F5A9">Landmark</th>
<th style="background:#F2F5A9" colspan="2">Teams</th>
<th style="background:#F2F5A9; width:150px">Mission</th>
<th style="background:#F2F5A9; width:150px">Results</th>
</tr>
<tr>
<th>179
<br>
<sup id="cite_ref-year_1-0" class="reference"><a href="#cite_note-year-1"><span class="cite-bracket">[</span>nb 1<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-ep179_2-0" class="reference"><a href="#cite_note-ep179-2"><span class="cite-bracket">[</span>nb 2<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup></th>
<td>January 5, 2014
<br>
<span style="font-size: 85%;">(December 16, 2013)</span></td>
<td rowspan="2" style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Kim_Jae-kyung" title="Kim Jae-kyung">Jae-kyung</a> (<a href="/wiki/Rainbow_(South_Korean_band)" class="mw-redirect" title="Rainbow (South Korean band)">Rainbow</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/John_Park_(musician)" title="John Park (musician)">John Park</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kim_Kyung-ho" title="Kim Kyung-ho">Kim Kyung-ho</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Dong-wook" title="Lee Dong-wook">Lee Dong-wook</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Park_Soo-hong" title="Park Soo-hong">Park Soo-hong</a>
<div style="clear:both;" class=""></div>
<a href="/w/index.php?title=Song_Kyung_Ah&action=edit&redlink=1" class="new" title="Song Kyung Ah (page does not exist)">Song Kyung Ah</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EC%86%A1%EA%B2%BD%EC%95%84_(%EB%AA%A8%EB%8D%B8)" class="extiw" title="ko:송경아 (모델)">ko</a>]</span>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kim_Sung-kyu" title="Kim Sung-kyu">Sung-kyu</a> (<a href="/wiki/Infinite_(group)" class="mw-redirect" title="Infinite (group)">Infinite</a>)</td>
<td rowspan="2">La Cuisine
<br>
<span style="font-size: 85%;">(<a href="/wiki/Jung_District,_Seoul" title="Jung District, Seoul">Jung District, Seoul</a>)</span></td>
<td rowspan="2" colspan="2">Yoo Jae-suk & Park Soo-hong
<br>
Gary & Jae-kyung
<br>
Haha & Sung-kyu
<br>
Jee Seok-jin & Kim Kyung-ho
<br>
Kim Jong-kook & Song Kyung Ah
<br>
Lee Kwang-soo & John Park
<br>
Song Ji-hyo & Lee Dong-wook</td>
<td rowspan="2">Cook the best first weekend dinner of 2014</td>
<td rowspan="2">Kim Jong-kook & Song Kyung Ah <b>Wins</b>
<br>
<span style="font-size: 85%;">Kim Jong-kook & Song Kyung Ah each received a golden horse.</span></td>
</tr>
<tr>
<th>180
<br>
<sup id="cite_ref-year_1-1" class="reference"><a href="#cite_note-year-1"><span class="cite-bracket">[</span>nb 1<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-ep179_2-1" class="reference"><a href="#cite_note-ep179-2"><span class="cite-bracket">[</span>nb 2<span class="cite-bracket">]</span></a></sup></th>
<td>January 12, 2014
<br>
<span style="font-size: 85%;">(December 16, 2013)</span></td>
</tr>
<tr>
<th>181
<br>
<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup></th>
<td>January 19, 2014
<br>
<span style="font-size: 85%;">(December 17, 2013)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Lee_Jong-suk" title="Lee Jong-suk">Lee Jong-suk</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Se-young" title="Lee Se-young">Lee Se-young</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Park_Bo-young" title="Park Bo-young">Park Bo-young</a></td>
<td>Duckdo Elementary School
<br>
<span style="font-size: 85%;">(<a href="/wiki/Yangju" title="Yangju">Yangju</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td>Male Student Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Lee Jong-suk)</span>
<br>
Female Student Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Lee Se-young, Park Bo-young)</span></td>
<td>Secret Couple
<br>
<span style="font-size: 85%;">(Song Ji-hyo, Lee Jong-suk)</span></td>
<td>Find the "secret couple"</td>
<td>Male Student Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Song Ji-hyo and Lee Jong-suk were sprayed with flour.</span></td>
</tr>
<tr>
<th>182
<br>
<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span class="cite-bracket">[</span>nb 3<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup></th>
<td>January 26, 2014
<br>
<span style="font-size: 85%;">(January 6, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Min_Do-hee" title="Min Do-hee">Do-hee</a> (<a href="/wiki/Tiny-G" title="Tiny-G">Tiny-G</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/Im_Si-wan" title="Im Si-wan">Si-wan</a> (<a href="/wiki/ZE:A" title="ZE:A">ZE:A</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/Yeo_Jin-goo" title="Yeo Jin-goo">Yeo Jin-goo</a></td>
<td><a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS Tanhyeon-dong Production Center</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Ilsan" title="Ilsan">Ilsanseo District</a>, <a href="/wiki/Goyang" title="Goyang">Goyang</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td><span style="font-size: 85%;"><i><b>Gallop Horses:</b></i></span>
<br>
Yoo Jae-suk & Jee Seok-jin
<br>
Gary & Lee Kwang-soo
<br>
Haha & Yeo Jin-goo
<br>
Kim Jong-kook & Do-hee
<br>
Song Ji-hyo & Si-wan
<br>
<span style="font-size: 85%;"><i><b>Running Land Big 3:</b></i></span>
<br>
Yoo Jae-suk & Yeo Jin-goo
<br>
Gary & Song Ji-hyo
<br>
Haha & Do-hee
<br>
Jee Seok-jin & Lee Kwang-soo
<br>
Kim Jong-kook & Si-wan</td>
<td><span style="font-size: 85%;"><i><b>Janggi Piece Rank Race:</b></i></span>
<br>
Han
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Gary, Jee Seok-jin, Do-hee, Yeo Jin-goo)</span>
<br>
Cho
<br>
<span style="font-size: 85%;">(Haha, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Si-wan)</span></td>
<td>Defeat the other team</td>
<td>Han <b>Wins</b>
<br>
<span style="font-size: 85%;">Han team members each received a gold janggi piece.</span></td>
</tr>
<tr>
<th>183
<br>
<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup></th>
<td>February 2, 2014
<br>
<span style="font-size: 85%;">(January 20, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Jo_Min-su" title="Jo Min-su">Jo Min-su</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Moon_So-ri" title="Moon So-ri">Moon So-ri</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Uhm_Jung-hwa" title="Uhm Jung-hwa">Uhm Jung-hwa</a></td>
<td><a href="/wiki/Seoul_Broadcasting_System" title="Seoul Broadcasting System">SBS Broadcasting Center</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Mok-dong" title="Mok-dong">Mok-dong</a>, <a href="/wiki/Yangcheon_District" title="Yangcheon District">Yangcheon District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td colspan="2" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No teams</td>
<td>Identify the "Partners of Fate"</td>
<td>Everyone <b>Wins</b>
<br>
<span style="font-size: 85%;">Everyone received a gold ring.</span></td>
</tr>
<tr>
<th>184
<br>
<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">[</span>nb 4<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">[</span>nb 5<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup></th>
<td>February 9, 2014
<br>
<span style="font-size: 85%;">(January 27, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Baro_(singer)" class="mw-redirect" title="Baro (singer)">Baro</a> (<a href="/wiki/B1A4" title="B1A4">B1A4</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/Kang_Ye-won" title="Kang Ye-won">Kang Ye-won</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Park_Seo-joon" title="Park Seo-joon">Park Seo-joon</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Seo_In-guk" title="Seo In-guk">Seo In-guk</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Son_Ho-jun" title="Son Ho-jun">Son Ho-jun</a></td>
<td>Minjok Muyewon
<br>
<span style="font-size: 85%;">(Danwol-myeon, <a href="/wiki/Yangpyeong_County" title="Yangpyeong County">Yangpyeong County</a>, <a href="/wiki/Gangwon_Province,_South_Korea" title="Gangwon Province, South Korea">Gangwon Province</a>)</span></td>
<td>Running Man Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Lee Kwang-soo, Song Ji-hyo)</span></td>
<td>All Star Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Baro, Kang Ye-won, Park Seo-joon, Seo In-guk, Son Ho-jun)</span></td>
<td>Defeat the other team</td>
<td>Running Man Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Running Man Team members each received a gold <a href="/wiki/Taegeuk" title="Taegeuk">Taegeuk</a> badge.</span></td>
</tr>
<tr>
<th>185
<br>
<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span class="cite-bracket">[</span>nb 6<span class="cite-bracket">]</span></a></sup></th>
<td>February 16, 2014
<br>
<span style="font-size: 85%;">(February 4, 2014)</span></td>
<td style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Guest_appearance" title="Guest appearance">No guests</a></td>
<td><a href="/wiki/Gwacheon_National_Science_Museum" title="Gwacheon National Science Museum">Gwacheon National Science Museum</a>
<br>
<span style="font-size: 85%;">(Gwacheon-dong, <a href="/wiki/Gwacheon" title="Gwacheon">Gwacheon</a>, <a href="/wiki/Gyeonggi_Province" title="Gyeonggi Province">Gyeonggi Province</a>)</span></td>
<td>Cheon Song-yi
<br>
<span style="font-size: 85%;">(Yoo Jae-suk)</span>
<br>
Do Min-joon
<br>
<span style="font-size: 85%;">(Haha)</span></td>
<td>Absolute Villain
<br>
<span style="font-size: 85%;">(Kim Jong-kook)</span>
<br>
Mission Team
<br>
<span style="font-size: 85%;">(Gary, Jee Seok-jin, Lee Kwang-soo, Song Ji-hyo)</span></td>
<td>"My Love From Another Star" theme - Ride the flying saucer.</td>
<td>Yoo Jae-suk <b>Wins</b>
<br>
<span style="font-size: 85%;">Yoo Jae-suk received a gold medal necklace.</span></td>
</tr>
<tr>
<th>186
<br>
<sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup></th>
<td>February 23, 2014
<br>
<span style="font-size: 85%;">(February 10, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Jung_Yong-hwa" title="Jung Yong-hwa">Jung Yong-hwa</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kang_Min-hyuk" title="Kang Min-hyuk">Kang Min-hyuk</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Jong-hyun" title="Lee Jong-hyun">Lee Jong-hyun</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Jung-shin" title="Lee Jung-shin">Lee Jung-shin</a> (<a href="/wiki/CNBLUE" title="CNBLUE">CNBLUE</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/Shim_Eun-kyung" title="Shim Eun-kyung">Shim Eun-kyung</a></td>
<td>City of Seoul favourite tourist sites including: N Seoul Tower; The Shilla Duty Free Shop
<br>
<span style="font-size: 85%;">(<a href="/wiki/Jangchung-dong" title="Jangchung-dong">Jangchung-dong</a>, <a href="/wiki/Jung_District,_Seoul" title="Jung District, Seoul">Jung District, Seoul</a>)</span></td>
<td colspan="2">Yellow Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Gary, Haha, Jee Seok-jin)</span>
<br>
Red Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Shim Eun-kyung)</span>
<br>
Blue Team
<br>
<span style="font-size: 85%;">(Jung Yong-hwa, Kang Min-hyuk, Lee Jong-hyun, Lee Jung-shin)</span></td>
<td>Earn medals for the roulette wheel</td>
<td>Blue Team <b>Wins</b></td>
</tr>
<tr>
<th>187</th>
<td>March 2, 2014
<br>
<span style="font-size: 85%;">(February 11, 2014)</span></td>
<td style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Guest_appearance" title="Guest appearance">No guests</a></td>
<td><a href="/wiki/Han_River_(Korea)" title="Han River (Korea)">Han River</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Mapo_District" title="Mapo District">Mapo District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td colspan="2">Korea University Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Korea University students)</span>
<br>
Sungshin Women's University Team
<br>
<span style="font-size: 85%;">(Gary, Sungshin Women's University students)</span>
<br>
Dongguk University Team
<br>
<span style="font-size: 85%;">(Haha, Dongguk University students)</span>
<br>
Kyung Hee University Team
<br>
<span style="font-size: 85%;">(Jee Seok-jin, Kyung Hee University students)</span>
<br>
Chung-Ang University Team
<br>
<span style="font-size: 85%;">(Kim Jong-kook, Chung-Ang University students)</span>
<br>
Sogang University Team
<br>
<span style="font-size: 85%;">(Lee Kwang-soo, Sogang University students)</span>
<br>
Konkuk University Team
<br>
<span style="font-size: 85%;">(Song Ji-hyo, Konkuk University students)</span></td>
<td>2014 Running Man University Competition - Cross the Han River</td>
<td>Konkuk University Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Students from the top 3 teams each received scholarship, with Sungshin University Team and Korea University Team finished 2nd and 3rd respectively.</span></td>
</tr>
<tr>
<th>188
<br>
<sup id="cite_ref-ep188_13-0" class="reference"><a href="#cite_note-ep188-13"><span class="cite-bracket">[</span>nb 7<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span class="cite-bracket">[</span>nb 8<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-ep188_15-0" class="reference"><a href="#cite_note-ep188-15"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup></th>
<td>March 9, 2014
<br>
<span style="font-size: 85%;">(February 23, 2014)</span></td>
<td rowspan="2" style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Kim_Woo-bin" title="Kim Woo-bin">Kim Woo-bin</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Rain_(entertainer)" title="Rain (entertainer)">Rain</a><sup id="cite_ref-ep188_15-1" class="reference"><a href="#cite_note-ep188-15"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/Palm_Beach,_Queensland" title="Palm Beach, Queensland">Palm Beach</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Gold_Coast,_Queensland" title="Gold Coast, Queensland">Gold Coast</a>, <a href="/wiki/Queensland" title="Queensland">Queensland</a>, <a href="/wiki/Australia" title="Australia">Australia</a>)</span></td>
<td colspan="2">Yoo Jae-suk & Kim Woo-bin
<br>
Gary & Jee Seok-jin
<br>
Haha & Kim Jong-kook
<br>
Lee Kwang-soo & Rain</td>
<td rowspan="2">Find the four elements</td>
<td rowspan="2">Kim Jong-kook & Rain <b>Wins</b>
<br>
<span style="font-size: 85%;">Kim Jong-kook and Rain received a golden ball.</span></td>
</tr>
<tr>
<th>189
<br>
<sup id="cite_ref-ep188_13-1" class="reference"><a href="#cite_note-ep188-13"><span class="cite-bracket">[</span>nb 7<span class="cite-bracket">]</span></a></sup></th>
<td>March 16, 2014
<br>
<span style="font-size: 85%;">(February 24, 2014)</span></td>
<td><a href="/wiki/Royal_Exhibition_Building" title="Royal Exhibition Building">Royal Exhibition Building</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Melbourne" title="Melbourne">Melbourne</a>, <a href="/wiki/Victoria_(Australia)" class="mw-redirect" title="Victoria (Australia)">Victoria</a>, <a href="/wiki/Australia" title="Australia">Australia</a>)</span></td>
<td>Yoo Jae-suk & Jee Seok-jin
<br>
Gary & Haha
<br>
Kim Jong-kook & Rain
<br>
Lee Kwang-soo & Kim Woo-bin</td>
<td>Goddess of Earth
<br>
<span style="font-size: 85%;">(Song Ji-hyo)</span></td>
</tr>
<tr>
<th>190
<br>
<sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup></th>
<td>March 23, 2014
<br>
<span style="font-size: 85%;">(March 10, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Gong_Hyung-jin" title="Gong Hyung-jin">Gong Hyung-jin</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kang_Ha-neul" title="Kang Ha-neul">Kang Ha-neul</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kim_Ji-seok_(actor)" title="Kim Ji-seok (actor)">Kim Ji-seok</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Ku_Hye-sun" class="mw-redirect" title="Ku Hye-sun">Ku Hye-sun</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kwon_Hae-hyo" title="Kwon Hae-hyo">Kwon Hae-hyo</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Sang-yoon" title="Lee Sang-yoon">Lee Sang-yoon</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Seungri" title="Seungri">Seung-ri</a> (<a href="/wiki/Big_Bang_(South_Korean_band)" class="mw-redirect" title="Big Bang (South Korean band)">Big Bang</a>)</td>
<td><a href="/w/index.php?title=Seoul_Metropolitan_Fire_Academy&action=edit&redlink=1" class="new" title="Seoul Metropolitan Fire Academy (page does not exist)">Seoul Metropolitan Fire Academy</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EC%84%9C%EC%9A%B8%ED%8A%B9%EB%B3%84%EC%8B%9C_%EC%86%8C%EB%B0%A9%ED%95%99%EA%B5%90" class="extiw" title="ko:서울특별시 소방학교">ko</a>]</span>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Banghak-dong" title="Banghak-dong">Banghak-dong</a>, <a href="/wiki/Dobong_District" title="Dobong District">Dobong District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td>Running Man Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Gary, Haha, Jee Seok-jin, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo)</span></td>
<td>Angel Eyes Team
<br>
<span style="font-size: 85%;">(Gong Hyung-jin, Kang Ha-neul, Kim Ji-seok, Ku Hye-sun, Kwon Hae-hyo, Lee Sang-yoon, Seung-ri)</span></td>
<td>Complete the fire fighting relay course</td>
<td>Running Man Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Running Man Team received two gold envelopes of money.</span></td>
</tr>
<tr>
<th>191
<br>
<sup id="cite_ref-ep188_13-2" class="reference"><a href="#cite_note-ep188-13"><span class="cite-bracket">[</span>nb 7<span class="cite-bracket">]</span></a></sup></th>
<td>March 30, 2014
<br>
<span style="font-size: 85%;">(February 25, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Kim_Woo-bin" title="Kim Woo-bin">Kim Woo-bin</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Rain_(entertainer)" title="Rain (entertainer)">Rain</a><sup id="cite_ref-ep188_15-2" class="reference"><a href="#cite_note-ep188-15"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup></td>
<td><a href="/wiki/Sovereign_Hill" title="Sovereign Hill">Sovereign Hill</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Ballarat" title="Ballarat">Ballarat</a>, <a href="/wiki/Victoria_(Australia)" class="mw-redirect" title="Victoria (Australia)">Victoria</a>, <a href="/wiki/Australia" title="Australia">Australia</a>)</span></td>
<td colspan="2" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast">No teams</td>
<td>Defeat the other members</td>
<td>Kim Woo-bin <b>Wins</b>
<br>
<span style="font-size: 85%;">Kim Woo-bin received a reward money.</span></td>
</tr>
<tr>
<th>192
<br>
<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span class="cite-bracket">[</span>nb 9<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup></th>
<td>April 6, 2014
<br>
<span style="font-size: 85%;">(March 17, 2014)</span></td>
<td rowspan="3" style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Kim_Dong-jun" title="Kim Dong-jun">Kim Dong-jun</a> (<a href="/wiki/ZE:A" title="ZE:A">ZE:A</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/Kim_Jung-nan" title="Kim Jung-nan">Kim Jung-nan</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Kim_Min-jong" title="Kim Min-jong">Kim Min-jong</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Sang-hwa" title="Lee Sang-hwa">Lee Sang-hwa</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lim_Ju-hwan" title="Lim Ju-hwan">Lim Ju-hwan</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Oh_Man-seok" title="Oh Man-seok">Oh Man-seok</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Ryu_Seung-soo" title="Ryu Seung-soo">Ryu Seung-soo</a></td>
<td rowspan="3"><a href="/wiki/Ttangkkeut" title="Ttangkkeut">Ttangkkeut</a> Auto Camp
<br>
<span style="font-size: 85%;">(<a href="/wiki/Haenam_County" title="Haenam County">Haenam County</a>, <a href="/wiki/South_Jeolla_Province" title="South Jeolla Province">South Jeolla Province</a>)</span></td>
<td colspan="2">Yoo Jae-suk & Ryu Seung-soo
<br>
Gary & Lee Sang-hwa
<br>
Haha & Oh Man-seok
<br>
Jee Seok-jin & Kim Jung-nan
<br>
Kim Jong-kook & Kim Min-jong
<br>
Lee Kwang-soo & Lim Ju-hwan
<br>
Song Ji-hyo & Kim Dong-jun</td>
<td>Arrive at the final venue first</td>
<td>Lee Kwang-soo & Lim Ju-hwan <b>Wins</b>
<br>
<span style="font-size: 85%;">Lee Kwang-soo and Lim Ju-hwan got to sleep in a <a href="/wiki/Motorhome" title="Motorhome">motorhome</a> for the night.</span></td>
</tr>
<tr>
<th>193</th>
<td>April 13, 2014
<br>
<span style="font-size: 85%;">(March 17–18, 2014)</span></td>
<td rowspan="2">Mafia Team
<br>
<span style="font-size: 85%;">(Jee Seok-jin, Kim Jung-nan, Kim Min-jong, Oh Man-seok)</span></td>
<td rowspan="2">Citizen Team
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Gary, Haha, Kim Jong-kook, Lee Kwang-soo, Song Ji-hyo, Kim Dong-jun, Lee Sang-hwa, Lim Ju-hwan, Ryu Seung-soo)</span></td>
<td rowspan="2">Find the mafia</td>
<td rowspan="2">Mafia Team <b>Wins</b>
<br>
<span style="font-size: 85%;">Jee Seok-jin, Kim Jung-nan, Kim Min-jong and Oh Man-seok received ten gold "R" badges.</span></td>
</tr>
<tr>
<th>194</th>
<td>May 4, 2014
<br>
<span style="font-size: 85%;">(March 18, 2014)</span></td>
</tr>
<tr>
<th>195
<br>
<sup id="cite_ref-mcyoo_19-0" class="reference"><a href="#cite_note-mcyoo-19"><span class="cite-bracket">[</span>nb 10<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span class="cite-bracket">[</span>nb 11<span class="cite-bracket">]</span></a></sup>
<br>
<sup id="cite_ref-21" class="reference"><a href="#cite_note-21"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup></th>
<td>May 11, 2014
<br>
<span style="font-size: 85%;">(April 7, 2014)</span></td>
<td style="background: #DEF; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Hwang_Chan-sung" title="Hwang Chan-sung">Chansung</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Jun._K" title="Jun. K">Jun. K</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Lee_Jun-ho_(singer)" class="mw-redirect" title="Lee Jun-ho (singer)">Junho</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Nichkhun" title="Nichkhun">Nichkhun</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Jang_Wooyoung" title="Jang Wooyoung">Wooyoung</a> (<a href="/wiki/2PM" title="2PM">2PM</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/CL_(singer)" class="mw-redirect" title="CL (singer)">CL</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Minzy" title="Minzy">Minzy</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Park_Bom" title="Park Bom">Park Bom</a>
<div style="clear:both;" class=""></div>
<a href="/wiki/Sandara_Park" title="Sandara Park">Sandara Park</a> (<a href="/wiki/2NE1" title="2NE1">2NE1</a>)
<div style="clear:both;" class=""></div>
<a href="/wiki/Jo_Jung-chi" title="Jo Jung-chi">Jo Jung-chi</a> (<a href="/wiki/Shinchireem" title="Shinchireem">Shinchireem</a>)
<div style="clear:both;" class=""></div>
<a href="/w/index.php?title=Muzie&action=edit&redlink=1" class="new" title="Muzie (page does not exist)">Muzie</a><span class="noprint" style="font-size:85%; font-style: normal;"> [<a href="https://ko.wikipedia.org/wiki/%EB%AE%A4%EC%A7%80" class="extiw" title="ko:뮤지">ko</a>]</span>
<div style="clear:both;" class=""></div>
<a href="/wiki/Yoon_Jong-shin" title="Yoon Jong-shin">Yoon Jong-shin</a></td>
<td>Seoul Energy Dream Center
<br>
<span style="font-size: 85%;">(<a href="/wiki/Sangam-dong" title="Sangam-dong">Sangam-dong</a>, <a href="/wiki/Mapo_District" title="Mapo District">Mapo District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td colspan="2">2NE1 Team
<br>
<span style="font-size: 85%;">(Gary, Kim Jong-kook, CL, Minzy, Park Bom, Sandara Park)</span>
<br>
Mystic 89 Team
<br>
<span style="font-size: 85%;">(Haha, Jee Seok-jin, Lee Kwang-soo, Jo Jung-chi, Muzie, Yoon Jong-shin)</span>
<br>
2PM Team
<br>
<span style="font-size: 85%;">(Song Ji-hyo, Chansung, Jun. K, Junho, Nichkhun, Wooyoung)</span></td>
<td>Defeat the other teams</td>
<td>2NE1 Team <b>Wins</b>
<br>
<span style="font-size: 85%;">2NE1 Team received a gold trophy.</span></td>
</tr>
<tr>
<th rowspan="3">196
<br>
<sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span class="cite-bracket">[</span>nb 12<span class="cite-bracket">]</span></a></sup></th>
<td rowspan="3">May 18, 2014
<br>
<span style="font-size: 85%;">(April 8, 2014)</span></td>
<td rowspan="4" style="background: #EEE; color:black; vertical-align: middle; text-align: center;" class="table-cast"><a href="/wiki/Guest_appearance" title="Guest appearance">No guests</a></td>
<td rowspan="3"><a href="/wiki/Severance_Hospital" title="Severance Hospital">Severance Hospital</a>
<br>
<span style="font-size: 85%;">(<a href="/wiki/Sinchon-dong,_Seoul" title="Sinchon-dong, Seoul">Sinchon-dong</a>, <a href="/wiki/Seodaemun_District" title="Seodaemun District">Seodaemun District</a>, <a href="/wiki/Seoul" title="Seoul">Seoul</a>)</span></td>
<td><b>Kook-mes Bond</b>
<br>
<span style="font-size: 85%;">(Kim Jong-kook)</span><sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span class="cite-bracket">[</span>nb 13<span class="cite-bracket">]</span></a></sup></td>
<td><b>Mission Team</b>
<br>
<span style="font-size: 85%;">(Yoo Jae-suk, Haha, Jee Seok-jin, Lee Kwang-soo, Gary, Song Ji-hyo)</span></td>
<td><b>Kook-mes Bond</b>
<br>
Eliminate the others before they escape.
<br>
<b>Mission Team</b>
<br>
Find the right key and escape.</td>
<td>Gary and Song Ji-hyo <b>Win</b>