結果

問題 No.1499 羊が、何匹だっけ
ユーザー shotoyooshotoyoo
提出日時 2021-05-07 21:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-09-15 09:05:11
合計ジャッジ時間 1,469 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")

n = int(input())
for i in range(n):
    s = list(input().split())
    s[2] = str(int(s[2])+1)
    write(" ".join(map(str, s)))
0