結果

問題 No.1499 羊が、何匹だっけ
ユーザー pypypymipypypymi
提出日時 2021-12-28 09:50:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-04-09 23:17:09
合計ジャッジ時間 1,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,076 KB
testcase_01 AC 36 ms
52,400 KB
testcase_02 AC 38 ms
53,020 KB
testcase_03 AC 40 ms
52,912 KB
testcase_04 AC 39 ms
52,820 KB
testcase_05 AC 38 ms
54,336 KB
testcase_06 AC 37 ms
54,364 KB
testcase_07 AC 34 ms
52,628 KB
testcase_08 AC 36 ms
53,008 KB
testcase_09 AC 36 ms
52,820 KB
testcase_10 AC 36 ms
52,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
    s = input().split()
    print("{} {} {} {}".format(s[0],s[1],int(s[2])+1,s[3]))
0