結果

問題 No.293 4>7の世界
ユーザー takakintakakin
提出日時 2020-04-13 22:37:18
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 12,004 KB
実行使用メモリ 10,136 KB
最終ジャッジ日時 2023-10-26 03:23:22
合計ジャッジ時間 2,403 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
9,988 KB
testcase_01 AC 28 ms
9,988 KB
testcase_02 AC 28 ms
9,988 KB
testcase_03 WA -
testcase_04 AC 28 ms
9,988 KB
testcase_05 WA -
testcase_06 AC 28 ms
9,988 KB
testcase_07 AC 28 ms
9,988 KB
testcase_08 AC 28 ms
9,988 KB
testcase_09 WA -
testcase_10 AC 29 ms
9,988 KB
testcase_11 AC 28 ms
9,988 KB
testcase_12 AC 28 ms
9,988 KB
testcase_13 AC 28 ms
9,988 KB
testcase_14 AC 29 ms
9,988 KB
testcase_15 WA -
testcase_16 AC 29 ms
9,988 KB
testcase_17 AC 29 ms
9,988 KB
testcase_18 AC 28 ms
9,988 KB
testcase_19 AC 29 ms
9,988 KB
testcase_20 AC 29 ms
9,988 KB
testcase_21 AC 29 ms
9,988 KB
testcase_22 AC 29 ms
9,988 KB
testcase_23 AC 28 ms
9,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
a,b=map(int,input().split())
aa,bb=str(a),str(b)

def f(x):
  x=x.replace("4","a")
  x=x.replace("7","4")
  x=x.replace("a","7")
  return x

aa=int(f(aa))
bb=int(f(bb))
if aa>bb:
  print(a)
else:
  print(b)

  
0