結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー yumechiyumechi
提出日時 2016-11-19 00:02:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 65,096 KB
最終ジャッジ日時 2024-11-26 08:59:59
合計ジャッジ時間 2,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
62,592 KB
testcase_01 AC 57 ms
62,976 KB
testcase_02 AC 55 ms
62,848 KB
testcase_03 AC 57 ms
62,976 KB
testcase_04 AC 57 ms
62,976 KB
testcase_05 AC 58 ms
62,976 KB
testcase_06 WA -
testcase_07 AC 57 ms
62,976 KB
testcase_08 WA -
testcase_09 AC 55 ms
62,976 KB
testcase_10 AC 56 ms
62,976 KB
testcase_11 AC 62 ms
62,592 KB
testcase_12 AC 60 ms
63,104 KB
testcase_13 AC 58 ms
62,592 KB
testcase_14 AC 57 ms
63,104 KB
testcase_15 AC 58 ms
62,720 KB
testcase_16 AC 58 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

def shapingNumber(number: str) -> str:
    shaping = number
    shaping = re.sub("^0+.+", "", shaping)
    shaping = re.sub("[^0-9]", "", shaping)
    return shaping

def isEqualShapingNumber(original: str) -> bool:
    return original == shapingNumber(original)

def solve():
    a, b = input(), input()
    print("OK" if isEqualShapingNumber(a) and isEqualShapingNumber(b) else "NG")

if __name__=="__main__":
    solve()
0