結果

問題 No.993 青色
ユーザー naimonon77naimonon77
提出日時 2024-01-21 03:55:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 926 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-01-21 03:55:03
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
import numpy
import re
import os
from math import inf
import random
import time
import copy
from decimal import *
import datetime


def LI():
    return [int(x) for x in sys.stdin.readline().split()]


def I():
    return int(sys.stdin.readline())


def IR(n):
    return [I() for _ in range(n)]


def LIR(n):
    return [LI() for _ in range(n)]


def abp(a, b, c):
    if a:
        print(b)
    else:
        print(c)


def yep(b):
    if b:
        print("Yes")
    else:
        print("No")


def div_ceil(a, b):
    return -(-a // b)


def eprint(*arg):
    if os.name == "nt": # windows
        print(*arg, file=sys.stderr)

sys.setrecursionlimit(1000000)
mod = 1000000007
MAX = 10**200

#
#
#

s = input()
print(s.replace('ao', 'ki'))
0