結果

問題 No.1499 羊が、何匹だっけ
ユーザー gorugo30gorugo30
提出日時 2021-05-08 16:07:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 86,728 KB
実行使用メモリ 71,420 KB
最終ジャッジ日時 2023-10-15 03:33:57
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,128 KB
testcase_01 AC 70 ms
71,208 KB
testcase_02 AC 70 ms
71,268 KB
testcase_03 AC 72 ms
71,220 KB
testcase_04 AC 76 ms
71,128 KB
testcase_05 AC 74 ms
71,048 KB
testcase_06 AC 69 ms
71,220 KB
testcase_07 AC 68 ms
71,420 KB
testcase_08 AC 72 ms
71,328 KB
testcase_09 AC 72 ms
71,312 KB
testcase_10 AC 70 ms
70,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    a = list(input().split())
    a[2] = str(int(a[2]) + 1)
    print(*a, sep = " ")
0