結果

問題 No.1499 羊が、何匹だっけ
ユーザー deepjugglingdeepjuggling
提出日時 2023-01-15 19:53:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-09 07:47:01
合計ジャッジ時間 1,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,872 KB
testcase_01 AC 30 ms
52,928 KB
testcase_02 AC 37 ms
53,420 KB
testcase_03 AC 38 ms
54,372 KB
testcase_04 AC 34 ms
52,620 KB
testcase_05 AC 34 ms
54,312 KB
testcase_06 AC 33 ms
52,772 KB
testcase_07 AC 32 ms
52,644 KB
testcase_08 AC 32 ms
53,008 KB
testcase_09 AC 34 ms
53,924 KB
testcase_10 AC 32 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    a,b,c,d = input().split()
    c = int(c)
    c += 1
    print(a,b,c,d)
0