結果
| 問題 | No.304 鍵(1) |
| コンテスト | |
| ユーザー |
QCFium
|
| 提出日時 | 2020-06-16 18:20:02 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 169 bytes |
| 記録 | |
| コンパイル時間 | 948 ms |
| コンパイル使用メモリ | 177,232 KB |
| 実行使用メモリ | 57,612 KB |
| 最終ジャッジ日時 | 2026-03-31 17:22:13 |
| 合計ジャッジ時間 | 7,341 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 5 |
ソースコード
#include <bits/stdc++.h>
int main() {
for (int i = 0; i < 1000; i++) {
printf("%03d\n", i);
char s[16];
scanf("%s", s);
if (*s == 'u') break;
}
return 0;
}
QCFium