結果
| 問題 |
No.1533 Don't be Negative!
|
| コンテスト | |
| ユーザー |
googol_S0
|
| 提出日時 | 2021-05-17 17:02:55 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 155 bytes |
| コンパイル時間 | 208 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-11 02:02:54 |
| 合計ジャッジ時間 | 3,398 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 53 |
ソースコード
import sys S=sys.stdin.readlines() assert(len(S)==1) N,M=map(int,S[0].split()) assert(1<=N<=30000) assert(1<=M<=7) T=str(N)+' '+str(M)+'\n' assert(T==S[0])
googol_S0