結果

問題 No.1499 羊が、何匹だっけ
ユーザー shobonvipshobonvip
提出日時 2023-02-24 19:07:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 86,984 KB
実行使用メモリ 71,584 KB
最終ジャッジ日時 2023-10-11 04:03:12
合計ジャッジ時間 2,740 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,056 KB
testcase_01 AC 73 ms
71,180 KB
testcase_02 AC 79 ms
71,388 KB
testcase_03 AC 77 ms
71,256 KB
testcase_04 AC 78 ms
71,472 KB
testcase_05 AC 76 ms
71,476 KB
testcase_06 AC 76 ms
71,204 KB
testcase_07 AC 73 ms
71,244 KB
testcase_08 AC 76 ms
71,548 KB
testcase_09 AC 76 ms
71,584 KB
testcase_10 AC 75 ms
71,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


T = int(input())
for _ in range(T):
	a = list(input().split())
	print(a[0], a[1], int(a[2]) + 1, a[3])
0