結果
| 問題 |
No.1499 羊が、何匹だっけ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-07 21:47:01 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 44 ms / 2,000 ms |
| コード長 | 101 bytes |
| コンパイル時間 | 330 ms |
| コンパイル使用メモリ | 82,104 KB |
| 実行使用メモリ | 52,992 KB |
| 最終ジャッジ日時 | 2024-09-15 09:38:20 |
| 合計ジャッジ時間 | 1,260 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 10 |
ソースコード
n = int(input())
for i in range(n):
l = input().split()
l[2] = str(int(l[2])+1)
print(*l)