結果
| 問題 | No.1499 羊が、何匹だっけ | 
| コンテスト | |
| ユーザー |  学ぶマン | 
| 提出日時 | 2025-07-17 21:09:29 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 39 ms / 2,000 ms | 
| コード長 | 110 bytes | 
| コンパイル時間 | 337 ms | 
| コンパイル使用メモリ | 82,332 KB | 
| 実行使用メモリ | 54,440 KB | 
| 最終ジャッジ日時 | 2025-07-17 21:09:31 | 
| 合計ジャッジ時間 | 1,603 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 10 | 
ソースコード
N = int(input())
for i in range(N):
    a, b, c, d = input().split()
    c = int(c) + 1
    print(a, b, c, d)
            
            
            
        