結果

問題 No.313 π
ユーザー hirokazu1020hirokazu1020
提出日時 2015-12-07 01:52:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-09-14 17:50:35
合計ジャッジ時間 3,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

a={ '0':20104,'1':20063,'2':19892,'3':20011,'4':19874,'5':20199,'6':19898,'7':20163,'8':19956,'9':19841,'.':1 }
b = Counter(raw_input())
for c,f in a.items():
    if f<b[c]:
        print c,
for c,f in a.items():
    if f>b[c]:
        print c
0