結果

問題 No.313 π
ユーザー tjaketjake
提出日時 2015-12-06 01:58:30
言語 Python2
(2.7.18)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-09-14 15:01:38
合計ジャッジ時間 5,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

p=[20104,20063,19892,20011,19874,20199,19898,20163,19956,19841]
s = raw_input()
for c in s:
    if c==".": continue
    p[int(c)] -= 1
print p.index(-1), p.index(1)
0