結果
問題 | No.1034 テスターのふっぴーさん |
ユーザー | forest3 |
提出日時 | 2020-07-07 23:17:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 1,908 ms |
コンパイル使用メモリ | 168,228 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2024-10-01 21:45:10 |
合計ジャッジ時間 | 5,550 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,768 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,824 KB |
testcase_16 | AC | 2 ms
6,824 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int Q; cin >> Q; for( int q = 0; q < Q; q++ ) { int N, I, J; cin >> N >> I >> J; int l = 0; int h = N - 1; long long t = 0; int st = 1; while( l <= h ) { if( I == l || I == h || J == l || J == h ) break; t += (h - l) * 4; st = 0; l++; h--; } int flag = 0; for( int j = l; j <= h; j++ ) { if( l == I && j == J ) { flag = 1; break; } t++; } if( flag == 0 ) { for( int i = l + 1; i <= h; i++ ) { if( i == I && h == J ) { flag = 1; break; } t++; } } if( flag == 0 ) { for( int j = h - 1; j >= l; j-- ) { if( h == I && j == J ) { flag = 1; break; } t++; } } if( flag == 0 ) { for( int i = h - 1; i >= l + st; i-- ) { if( i == I && l == J ) { flag = 1; break; } t++; } } cout << t << endl; } }