結果
問題 |
No.1499 羊が、何匹だっけ
|
ユーザー |
|
提出日時 | 2021-06-17 14:39:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 144 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2025-01-02 20:00:07 |
合計ジャッジ時間 | 1,432 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 10 |
ソースコード
from sys import stdin N = int(input()) data = stdin.read() for d in data: tmp = d.split() print(tmp[0], tmp[1], int(tmp[2]) + 1, tmp[3])