結果
| 問題 |
No.349 干支の置き物
|
| コンテスト | |
| ユーザー |
a_ten
|
| 提出日時 | 2016-03-11 23:10:20 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 184 bytes |
| コンパイル時間 | 197 ms |
| コンパイル使用メモリ | 6,940 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-25 01:15:53 |
| 合計ジャッジ時間 | 1,570 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 WA * 7 |
ソースコード
#coding:utf-8 N=input() list=[raw_input() for i in range(N)] s=1 for i in list: if 2 <= list.count(i): s=max(s,list.count(i)) if s < float(N/2): print 'YES' else: print 'NO'
a_ten