結果

問題 No.544 Delete 7
ユーザー 👑 yumechiyumechi
提出日時 2017-10-13 01:00:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 86,668 KB
実行使用メモリ 71,188 KB
最終ジャッジ日時 2023-08-11 00:04:42
合計ジャッジ時間 6,956 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,108 KB
testcase_01 AC 67 ms
70,884 KB
testcase_02 WA -
testcase_03 AC 68 ms
71,188 KB
testcase_04 AC 67 ms
70,796 KB
testcase_05 AC 70 ms
71,180 KB
testcase_06 WA -
testcase_07 AC 69 ms
70,708 KB
testcase_08 AC 69 ms
71,100 KB
testcase_09 AC 67 ms
71,012 KB
testcase_10 AC 68 ms
70,556 KB
testcase_11 AC 69 ms
70,904 KB
testcase_12 WA -
testcase_13 AC 69 ms
70,904 KB
testcase_14 AC 68 ms
70,560 KB
testcase_15 WA -
testcase_16 AC 68 ms
70,792 KB
testcase_17 AC 69 ms
71,096 KB
testcase_18 AC 69 ms
70,992 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 65 ms
70,956 KB
testcase_25 AC 67 ms
71,168 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 71 ms
71,040 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,a=input(),0
for i,e in enumerate(l[::-1]):
  a+=10**i*int(e)if e!="7"else 6
print(a,int(l)-a)
0