結果
問題 | No.1992 Tendon Walk |
ユーザー | shojin |
提出日時 | 2024-05-05 12:24:47 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 318 bytes |
コンパイル時間 | 5,773 ms |
コンパイル使用メモリ | 272,200 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 12:24:54 |
合計ジャッジ時間 | 6,400 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int X; cin >> X; int dx[7] = {2, 2, -1, -1, 2, -1, -1}; int ans = 0, cx = 0; while(true){ for(int i = 0; i < 7; i++){ cx += dx[i]; ans += abs(dx[i]); if(cx == X){ cout << ans; return 0; } } } }