結果
| 問題 |
No.1080 Strange Squared Score Sum
|
| コンテスト | |
| ユーザー |
yosupot
|
| 提出日時 | 2020-05-03 00:09:21 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 150 bytes |
| コンパイル時間 | 635 ms |
| コンパイル使用メモリ | 64,768 KB |
| 最終ジャッジ日時 | 2025-01-10 06:08:52 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 20 |
ソースコード
#include <iostream>
#include <cassert>
using namespace std;
int main() {
int n;
cin >> n;
assert(1 <= n && n <= 100'000);
return 0;
}
yosupot