結果
| 問題 |
No.9001 標準入出力の練習問題(テスト用)
|
| ユーザー |
tyntyn
|
| 提出日時 | 2019-09-13 13:49:07 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 184 bytes |
| コンパイル時間 | 79 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-07-04 03:47:30 |
| 合計ジャッジ時間 | 620 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 2 |
ソースコード
test_deta = open("1.txt", "r")
lines = test_deta.readlines()
first_split = lines[0].split()
A = int(first_split[0])
B = int(first_split[1])
S = lines[1]
print(A + B, S)
test_deta.close
tyntyn